Skip to content

Instantly share code, notes, and snippets.

@adbertram
Created May 19, 2024 13:14
Show Gist options
  • Save adbertram/32fac550775bd3d87bcad64007859f2d to your computer and use it in GitHub Desktop.
Save adbertram/32fac550775bd3d87bcad64007859f2d to your computer and use it in GitHub Desktop.
enum Color {
Red
Green
Blue
}
function Set-Color {
param (
[Color]$Color
)
Write-Host "Color set to $Color"
}
function Validate-Color {
param (
[Color]$Color
)
Write-Host "Validated color: $Color"
}
Set-Color -Color Green
Validate-Color -Color Blue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment