Sub Statement

Defines a subroutine.

Notkun

Sub Name[(VarName1 [As Type][, VarName2 [As Type][,...]])]

skipanabálkur

End Sub

Viðföng:

Name: Name of the subroutine.

VarName: Parameter that you want to pass to the subroutine.

Type: Type-declaration key word.

Dæmi:

Sub Example

    REM some statements

End Sub