steal from jai
This commit is contained in:
+11
-8
@@ -1,14 +1,17 @@
|
||||
modl other;
|
||||
|
||||
let x: i32 = 3;
|
||||
x : i32 = 3;
|
||||
while true {
|
||||
print("hello");
|
||||
print(x);
|
||||
};
|
||||
print("hello");
|
||||
print(x);
|
||||
other.thing();
|
||||
thing();
|
||||
break;
|
||||
}
|
||||
|
||||
let y = true;
|
||||
y :: true;
|
||||
|
||||
if y => print("hello");
|
||||
|
||||
fn thing() {
|
||||
thing :: fn() {
|
||||
}
|
||||
|
||||
import other;
|
||||
|
||||
+3
-1
@@ -1,3 +1,5 @@
|
||||
fn thing() {
|
||||
thing :: fn() {
|
||||
print("hello from other");
|
||||
}
|
||||
|
||||
import main;
|
||||
|
||||
Reference in New Issue
Block a user