suicmez/tests/basic_types.sui

8 lines
130 B
Text
Raw Normal View History

2025-12-15 13:53:57 +05:30
# Basic type checking test
fn main() -> int do
let x = 5;
let y = 10.5;
let z = true;
let s = "hello";
x
end