【发布时间】:2016-12-02 22:12:04
【问题描述】:
我找不到示例。如何为我的 powershell 函数制作原型?
function exampleFunc();
//other stuff that calls the example function
Function exampleFunc(){//stuff}
【问题讨论】:
-
SO Docs上有例子
-
我的意思是喜欢
function exampleFunc();other stuff that calls the example functionFunction exampleFunc(){//stuff} -
你不能那样做。 Powershell 不是编译语言。
标签: powershell function-prototypes