Files
Noja/samples/loop.noja
T
2021-11-06 14:07:20 +01:00

28 lines
445 B
Plaintext

# ------------------------------------- #
# -- While loop ----------------------- #
i = 0;
while i < 3:
{
print('Hello from the while loop!\n');
i = i + 1;
}
# ------------------------------------- #
# -- Do-Wile loop --------------------- #
i = 0;
do
{
print('Hello from the do-while loop!\n');
i = i + 1;
}
while i < 3;
# ------------------------------------- #
# ------------------------------------- #
print(count(1, 2));