suicmez/tests/basic_types.sui
2025-12-15 13:53:57 +05:30

8 lines
130 B
Text

# Basic type checking test
fn main() -> int do
let x = 5;
let y = 10.5;
let z = true;
let s = "hello";
x
end