14 lines
123 B
Plaintext
14 lines
123 B
Plaintext
let x: i32 = 3;
|
|
while true {
|
|
print("hello");
|
|
print(x);
|
|
};
|
|
|
|
let y = true;
|
|
|
|
if y => print("hello");
|
|
|
|
fn thing() {
|
|
|
|
}
|