Skip to content

Instantly share code, notes, and snippets.

@HowardvanRooijen
Created May 1, 2013 21:03
Show Gist options
  • Save HowardvanRooijen/5498347 to your computer and use it in GitHub Desktop.
Save HowardvanRooijen/5498347 to your computer and use it in GitHub Desktop.
Function Print-TwoThings
{
Param
(
[string]
$First,
[string]
$Second
)
Write-Host ("{0} {1}!" -f $First, $Second)
}
$parameters = @{
First = "Hello"
Second = "World"
}
Clear-Host
Print-TwoThings @parameters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment