5 lines
219 B
Text
5 lines
219 B
Text
function Test ($SomeArgument, $AnotherArgument, $ThirdArgument) {
|
|
Write-Host "Some argument: $SomeArgument"
|
|
Write-Host "Another argument: $AnotherArgument"
|
|
Write-Host "Third argument: $ThirdArgument"
|
|
}
|