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