sunflower/test.foo

17 lines
189 B
Plaintext
Raw Normal View History

2022-07-03 23:13:12 +02:00
print("hello".eq("world"));
2022-07-03 23:13:12 +02:00
print((40 + 2).is_42() == true);
let y = 0;
def test_func(x) {
print(x);
while x < 100 {
print(x);
x = x + 1;
}
}
test_func(y);