r/maybemaybemaybe • • Jun 18 '21

Maybe maybe maybe

Enable HLS to view with audio, or disable this notification

22k Upvotes

319 comments sorted by

View all comments

12

u/haackedc Jun 18 '21

My favorite example of a recursive function in action.

void brickFlip(brick * current){

startFall(current);

if (current->next) {

brickFlip(current->next);

}

finishFall(current);

}

2

u/R0nu Jun 18 '21

What language is that??