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

9 lines
70 B
Plaintext

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