ethos/tests/fn_int.ethlang
2026-03-10 23:21:42 +01:00

11 lines
76 B
Plaintext

fn my_int_fn() -> int {
return 123;
}
fn main()
{
my_int_fn();
}