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

28 lines
441 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());