Files
orchid/examples/hello-world/main.orc

7 lines
129 B
Plaintext

let my_tuple = option::some t[1, 2]
let main = match my_tuple {
option::of t[ref head, ..] => head;
option::empty => "foo";
}