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

10 lines
84 B
Plaintext

// expect: 456
fn main()
{
let v: int = 123;
v = 456;
print_int(v);
}