例如:
function Foo {
[string]$functionName = commandRetrievesFoo
Write-Host "This function is called $functionName"
}
Run Code Online (Sandbox Code Playgroud)
输出:
PS > Foo
This function is called foo
Run Code Online (Sandbox Code Playgroud)