LangStudies/Builds/Tests/6.Conditionals.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

29 lines
130 B
Plaintext

if (x)
{
x = 1;
}
else
{
x = 2;
}
if ( y )
{
x = 2;
}
if (a)
b = 1;
if (a)
if (b)
if (c)
if (d)
{}
else
{}
else
{}