ethos/tests/assign.ethlang
sfja 086bea3e89
All checks were successful
Check / Explore-Gitea-Actions (push) Successful in 46s
add vim line to tests
2026-04-13 09:39:58 +02:00

12 lines
122 B
Rust

// expect: 456
fn main()
{
let v: i32 = 123;
v = 456;
print(v);
}
// vim: syntax=rust commentstring=//\ %s