LangStudies/Builds/Tests/6.Conditionals.letter

29 lines
130 B
Plaintext
Raw Normal View History

if (x)
{
x = 1;
}
else
{
x = 2;
2022-07-10 20:59:43 -07:00
}
if ( y )
{
x = 2;
}
if (a)
b = 1;
if (a)
if (b)
if (c)
if (d)
{}
else
{}
else
{}