Files
Noja/samples/if-else.noja
T
2021-11-01 15:55:59 +00:00

12 lines
66 B
Plaintext

p = 1;
return p;
if true
{
x = 7;
2;
}
else
4;
return x;