Benjozork/cyan

Complex values

Benjozork opened this issue · 1 comments

  •  structs
type Person = struct { name: str, age: i32 }
  • tuple (will not implement)
type Time = tuple { i32, i32, i32 }
  • variants unions
type Thing = Person | str

See wiki for up-to-date complex types concept.