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