Ошибка определения while зразу после if

Issue #29 resolved
Develops repo owner created an issue

Ошибочно распознает конструкцию

if (1) print 3;
while(4){
  print 2;
}

Вывод

if (1) {
        print(3);
}
else if (4) {
        print(2);
}

print(2);

Comments (1)

  1. Log in to comment