17 lines
189 B
Plaintext
17 lines
189 B
Plaintext
print("hello".eq("world"));
|
|
|
|
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);
|
|
|