uibk_703602-Compiler-Constr.../examples/dangling_else/dangling_else.mc

13 lines
106 B
MonkeyC
Raw Normal View History

2020-02-13 22:35:00 +01:00
int main()
{
if (true)
if (false)
print("foo");
else
print("bar");
print_nl();
return 0;
}