Sasha San

211
reputation
1
2
12
 bool dead = false;

 void goDeeper(){
 if(dead == true)
 return;
 goDeeper();
 }
 int main(void){
 goDeeper();
 }