while(true) {
switch(pointer) {
case 0: {pointer = 10; continue;}
case 10: {pointer = 20; continue;}
case 20: {return;}
}
}
}
Или
function context() {
function pointer_0() {
return pointer_10();
}
function pointer_10() {
return pointer_20();
}
function pointer_20() {
return;
}
return pointer_0();
}
аксиома Эскобара
Если свитч ещё на объект заменить
Обсуждают сегодня