mirror of
https://github.com/erg-lang/erg.git
synced 2025-12-23 05:36:48 +00:00
7 lines
130 B
Python
7 lines
130 B
Python
Suite = Class { "Heart", "Diamond", "Spade", "Club" }
|
|
|
|
_ = Suite.new "Invalid" # ERR
|
|
|
|
Month = Class 1..12
|
|
|
|
_ = Month.new 13 # ERR
|