Skip to content

Instantly share code, notes, and snippets.

@dustindortch
Created March 26, 2018 17:39
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/17c98d92dc25d6bacc87c75d4cf6ce3d to your computer and use it in GitHub Desktop.
Save dustindortch/17c98d92dc25d6bacc87c75d4cf6ce3d to your computer and use it in GitHub Desktop.
Function Get-Food {
Param(
[Parameter(ValueFromPipeline)]
[String[]]$Types
)
$Seed = Get-Random -Minimum 0 -Maximum $($Types.Count - 1)
Write-Output $Types[$Seed]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment