1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
pub type Cat { Cat(name: String, cuteness: Int) } type User { LoggedIn(name: String) Guest } pub opaque type Counter { Counter(value: Int) } pub type Headers = List(#(String, String)) type Headers = List(#(String, String))