8 lines
130 B
Text
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
|