ethos/tests/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

18 lines
213 B
Rust

fn main()
{
let a: u8 = 255u8;
// expect: 255
print(a);
a = a + 1u8;
// expect: 0
print(a);
let b = 256;
// expect: 256
print(b);
}
// vim: syntax=rust commentstring=//\ %s