![]() |
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$)
END
SUB