LangStudies/Builds/Tests/11.Iteration.letter
Ed94 0acd6ecbaf BAPFS Lecture 18
Instead of making a cli I made updates the gui to open any file.
2022-07-14 01:55:31 -04:00

32 lines
357 B
Plaintext

// While Statement
while ( x > 10 )
{
x -= 1;
}
// Do-While Statement
do
{
y -= 1;
}
while ( y > 10 );
// For Statement
for (let index = 0; index < 10; index += 1)
{
x += index;
}
// For Statement (Optionals)
for (;;)
{}
for (let index = 0, z = 12; index < 10; index += 1)
{
x += index;
}
for (index = 0; index < 10; index += 1)
{
x += index;
}