18 lines
171 B
Plaintext
18 lines
171 B
Plaintext
x : i32 = 3;
|
|
while true {
|
|
print("hello");
|
|
print(x);
|
|
other.thing();
|
|
thing();
|
|
break;
|
|
}
|
|
|
|
y :: true;
|
|
|
|
if y => print("hello");
|
|
|
|
thing :: fn() {
|
|
}
|
|
|
|
import other;
|