RosettaCodeData/Task/Enumerations/PowerShell/enumerations-1.ps1

9 lines
105 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
Enum fruits {
Apple
Banana
Cherry
}
[fruits]::Apple
[fruits]::Apple + 1
[fruits]::Banana + 1