e0/examples/functions.e0
Michael Zhang 1e954399c6
wip state
2022-04-13 02:09:56 -05:00

8 lines
79 B
Plaintext

fn compute() -> int {
return 42;
}
fn main() -> int {
return compute();
}