RosettaCodeData/Task/Named-parameters/PowerShell/named-parameters-2.ps1
2026-04-30 12:34:36 -04:00

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"
}