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

10 lines
80 B
Plaintext

// expect: 456
fn main()
{
let v: i32 = 123;
v = 456;
print(v);
}