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