Skip to content

Instantly share code, notes, and snippets.

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