Collection Types
List
[1, 2, 3] // List<Int>
['hello', 'world'] // List<Str>
[True, False] // List<Bool>
[Just(42), Nothing] // List<Maybe<Int>>
[] // List<T>Tuple
(0, 0) // (Int, Int)
(1, 2, 3) // (Int, Int, Int)
('hello', 42, True) // (Str, Int, Bool)Last updated