|
|
(12 intermediate revisions by 4 users not shown) |
Line 1: |
Line 1: |
| CALL ''procedurename''[(''argList'')]
| | Call ''procedurename''[(''argList'')] |
|
| |
|
| '''Description'''
| | == Description == |
|
| |
|
| CALL is an explicit method of executing a FUNCTION procedure or a SUB procedure. The required component, ''procedurename'', is any procedure name. The optional component, ''argList'', is a comma-delimited list of variables to pass to the called procedure. The CALL keyword is optional, procedures can be executed without the keyword, as
| | Call is an explicit method of executing a FUNCTION procedure or a SUB procedure. The required component, ''procedurename'', is any procedure name. The optional component, ''argList'', is a comma-delimited list of variables to pass to the called procedure. The Call keyword is optional, procedures can be executed without the keyword, as |
|
| |
|
| name[(''argList'')] | | name[(''argList'')] |
|
| |
|
| '''Example'''
| | == Example == |
|
| |
|
| <pre> | | <tabber> |
| REM CALL Example
| | JavaScript= |
| 'CALL explicitly executes a procedure | | <syntaxhighlight lang="JavaScript"> |
| CALL Welcome
| | //Call Example |
| CALL Message("NS Basic/App Studio is excellent.")
| | //Call explicitly executes a procedure |
| Wave | | |
| FUNCTION Welcome
| | Welcome(); |
| PRINT "Hello World!" | | Message("AppStudio is excellent."); |
| END FUNCTION
| | Wave(); |
| FUNCTION Message(Text)
| | function Welcome() { |
| PRINT "Message: " & Text | | NSB.Print("Hello World!"); |
| END FUNCTION
| | } |
| SUB Wave
| | function Message(Text) { |
| PRINT "Goodbye! " | | NSB.Print("Message: " + Text); |
| END SUB
| | } |
| </pre> | | function Wave() { |
| | NSB.Print("Goodbye! "); |
| | } |
| | </syntaxhighlight> |
| | |-| |
| | BASIC= |
| | <syntaxhighlight lang="vb.net"> |
| | Rem Call Example |
| | 'Call explicitly executes a procedure |
| | |
| | Call Welcome() |
| | Call Message("AppStudio is excellent.") |
| | Wave() |
| | Function Welcome() |
| | Print "Hello World!" |
| | End Function |
| | Function Message(Text) |
| | Print "Message: " & Text |
| | End Function |
| | Sub Wave() |
| | Print "Goodbye! " |
| | End Sub |
| | </syntaxhighlight> |
| | </tabber> |
|
| |
|
| '''Output'''
| | == Output == |
|
| |
|
| <pre> | | <pre> |
| Hello World! | | Hello World! |
| Message: NS Basic/App Studio is excellent. | | Message: AppStudio is excellent. |
| Goodbye! | | Goodbye! |
| </pre> | | </pre> |
|
| |
|
| '''Related Items'''
| | == Related Items == |
| [[sub|SUB]], [[function|FUNCTION]] | | |
| | [[sub|Sub]], [[function|Function]] |
| | |
| | [[Category:Language Reference]] |
| | |
| | [[Category:Statements - Flow of control]] |
Call procedurename[(argList)]
Description
Call is an explicit method of executing a FUNCTION procedure or a SUB procedure. The required component, procedurename, is any procedure name. The optional component, argList, is a comma-delimited list of variables to pass to the called procedure. The Call keyword is optional, procedures can be executed without the keyword, as
name[(argList)]
Example
//Call Example
//Call explicitly executes a procedure
Welcome();
Message("AppStudio is excellent.");
Wave();
function Welcome() {
NSB.Print("Hello World!");
}
function Message(Text) {
NSB.Print("Message: " + Text);
}
function Wave() {
NSB.Print("Goodbye! ");
}
Rem Call Example
'Call explicitly executes a procedure
Call Welcome()
Call Message("AppStudio is excellent.")
Wave()
Function Welcome()
Print "Hello World!"
End Function
Function Message(Text)
Print "Message: " & Text
End Function
Sub Wave()
Print "Goodbye! "
End Sub
Output
Hello World!
Message: AppStudio is excellent.
Goodbye!
Related Items
Sub, Function