e0/examples/functions.e0

8 lines
79 B
Plaintext
Raw Normal View History

2022-04-13 07:09:56 +00:00
fn compute() -> int {
return 42;
}
fn main() -> int {
return compute();
}