Milnoc

Milnoc t1_j6kheap wrote

A boy find a notebook titled "Death Note." If you write someone's name in it, they die from a heart attack after a few seconds. If you write someone's name and add exactly when and how they must die, that's exactly when and how they'll die.

Things get a bit complicated from there.

7

Milnoc t1_iybikwv wrote

I use goto, but only sparingly. I use them to get out of complex nested loops or switch/cases and jump either to the end or to the beginning of a function where I would have a maintenance routine to clean up before leaving the function or to reinitialize and restart the nested loop.

If you start using gotos where they're not needed at all, you're just asking for trouble down the road.

0