Files
orchid/examples/maps/main.orc
Lawrence Bethlenfalvy a8887227e5 Backup commit
My backspace key started ghosting. Nothing works atm.
2024-01-27 14:50:33 +00:00

15 lines
225 B
Plaintext

import std::to_string
export const main := do{
let foo = map::new[
"foo" = 1,
"bar" = 2,
"baz" = 3,
"bar" = 4
];
let num = map::get foo "bar"
|> option::assume;
cps println $ to_string num;
0
}