schala/schala-lang/language/src/prelude.schala

5 lines
89 B
Plaintext
Raw Normal View History

2018-11-05 20:55:03 -08:00
type Option<T> = Some(T) | None
type Color = Red | Green | Blue
type Ord = LT | EQ | GT