隱式呼叫語法

ProcedureName
ProcedureName argument1, argument2

按名稱呼叫過程,不帶任何括號。

邊緣情況

Call 關鍵字僅在一個邊緣情況下是必需的:

Call DoSomething : DoSomethingElse

DoSomethingDoSomethingElse 是被呼叫的程式。如果刪除了 Call 關鍵字,那麼 DoSomething 將被解析為行標籤而不是過程呼叫,這會破壞程式碼:

DoSomething: DoSomethingElse 'only DoSomethingElse will run