bool dead = false;
void goDeeper()
{
if( dead == true)
return;
goDeeper();
}
void main(void)
{
goDeeper();
}
Earned achievements
Arctic Code Vault Contributor
Arctic Code Vault Contributor
Loading