mirror of
https://github.com/ValKmjolnir/Nasal-Interpreter.git
synced 2026-05-24 21:45:44 +08:00
28 lines
388 B
Plaintext
28 lines
388 B
Plaintext
var condition_true=1;
|
|
var condition_false=0;
|
|
if(condition_true)
|
|
{
|
|
var a=1;
|
|
}
|
|
else if(!condition_false)
|
|
{
|
|
var b=1;
|
|
}
|
|
elsif(!condition_true and condition_false)
|
|
{
|
|
print("impossible");
|
|
}
|
|
else
|
|
{
|
|
var c=1;
|
|
var d=1;
|
|
}
|
|
|
|
if(condition_true)
|
|
var a=1;
|
|
else if(!condition_false)
|
|
var b=1;
|
|
elsif(!condition_true and condition_false)
|
|
print("impossible");
|
|
else
|
|
var c=1; |