簡單的功能

call :FunctionX
rem More code...

:FunctionX
rem Some code here.
goto :eof

這是一個非常簡單的功能。函式是程式中的命令,一次執行多個命令。函式是通過建立標籤並在其中放入程式碼來完成的,一旦完成,就會新增一個 goto :eofexit /b <ErrorlevelYou'dLike>,它返回到呼叫的位置。使用 call :functionname adparams 呼叫函式。