ethos/tests/fn_int.ethlang
sfja 0d57cd7e3c
All checks were successful
Check / Explore-Gitea-Actions (push) Successful in 13s
add i32, etc. and some other stuff
2026-03-23 00:34:07 +01:00

11 lines
76 B
Plaintext

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