ethos/tests/assign.ethlang
sfja 4f9ea23d84
All checks were successful
Check / Explore-Gitea-Actions (push) Successful in 8s
add strings
2026-03-17 20:24:15 +01:00

10 lines
80 B
Plaintext

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