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

9 lines
70 B
Plaintext

fn main()
{
let a = 123;
let b: int = 321;
let c = b;
}