Skip to content

Instantly share code, notes, and snippets.

@markwragg
Created November 28, 2017 08:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markwragg/2bf9af5dd5fb3aa2f62b67b2ce5add7b to your computer and use it in GitHub Desktop.
Save markwragg/2bf9af5dd5fb3aa2f62b67b2ce5add7b to your computer and use it in GitHub Desktop.
PowerShell Function for deciding between two choices. E.g Get-CoinFlip -Heads Coffee -Tails Tea
Function Get-CoinFlip {
Param(
$Heads = 'Heads',
$Tails = 'Tails'
)
Get-Random $Heads,$Tails
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment