DEV Community

Discussion on: Do you code on the weekend? How often, what’s your routine like?

Collapse
 
natonathan profile image
Nathan Tamez

haha, thanks it should be

// Recursion in a while loop Bug fix
day(){
    eat();
    sleep();
    code();
    if (alive)  day();
}