2024-11-01 10:48:21 +00:00
|
|
|
|
2024-12-09 12:57:48 +00:00
|
|
|
fn println(str: string) {
|
|
|
|
}
|
2024-11-01 10:48:21 +00:00
|
|
|
|
2024-12-09 12:57:48 +00:00
|
|
|
fn sum(a: int, b: int) -> int {
|
|
|
|
+ a b
|
2024-11-01 10:48:21 +00:00
|
|
|
}
|
|
|
|
|
2024-12-10 13:36:41 +00:00
|
|
|
fn main() {
|
|
|
|
sum(2,3); // -> 5
|
2024-11-01 10:48:21 +00:00
|
|
|
|
2024-12-10 13:36:41 +00:00
|
|
|
let a: string = "Hello";
|
|
|
|
|
|
|
|
let b = "world";
|
2024-11-01 10:48:21 +00:00
|
|
|
|
2024-12-10 13:36:41 +00:00
|
|
|
println(+ + + a " " b "!"); // -> "Hello world!"
|
2024-11-01 10:48:21 +00:00
|
|
|
|
2024-12-10 13:36:41 +00:00
|
|
|
if == a b {
|
|
|
|
println("whaaaat");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
println(":o");
|
|
|
|
}
|
2024-11-01 10:48:21 +00:00
|
|
|
|
2024-12-10 13:36:41 +00:00
|
|
|
loop {
|
|
|
|
let i = 0;
|
2024-11-01 10:48:21 +00:00
|
|
|
|
2024-12-10 13:36:41 +00:00
|
|
|
if >= i 10 {
|
|
|
|
break;
|
|
|
|
}
|
2024-11-01 10:48:21 +00:00
|
|
|
|
2024-12-10 13:36:41 +00:00
|
|
|
i = + i 1;
|
|
|
|
}
|
|
|
|
}
|