Skip to content

Instantly share code, notes, and snippets.

@janegilring
Created May 13, 2015 15:24
Show Gist options
  • Select an option

  • Save janegilring/676bf0d1262d84761dc6 to your computer and use it in GitHub Desktop.

Select an option

Save janegilring/676bf0d1262d84761dc6 to your computer and use it in GitHub Desktop.
param-splat
# 1
$Capabilities = @{MilitaryService = $false
DrinkAlcohol = $false
Vote = $false}
# 2
$Capabilities = @{MilitaryService = $false
DrinkAlcohol = $false
Vote = $false}
# 3
$Capabilities = @{
MilitaryService = $false
DrinkAlcohol = $false
Vote = $false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment