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

9 lines
120 B
PowerShell
Raw Permalink Normal View History

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