BCX Console Demonstration Program s26.bas |
' SUBS can be invoked with or without using the CALL keyword but ' remember that the parenthesis and the correct parameters must be used CALL Greeting("Hello from the World of Programming!") Greeting("Hello from the World of Programming!") SUB Greeting(a$) PRINT a$ END SUB