Skip to content

Instantly share code, notes, and snippets.

@dustindortch
Created March 26, 2018 17:30
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 dustindortch/c6b32f30c554addb2affe48cdc4e50cc to your computer and use it in GitHub Desktop.
Save dustindortch/c6b32f30c554addb2affe48cdc4e50cc to your computer and use it in GitHub Desktop.
Function Get-TacosOrGyros {
$Seed = Get-Random -Minimum 0 -Maximum 100
If(($Seed % 2) -eq 0) {
Write-Output "Tacos"
} Else {
Write-Output "Gyros"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment