Chapter4/4.6_AdvancedFunctions/4.6.12_enum/enum_powershell5.ps1

# クラス構文での列挙型は、enumキーワードを用いる
enum Colors{
  Red = 0
  Blue = 1
  Green = 2
}

# Redが出力される
[Colors]::Red