Kulpas
Kulpas t1_irrcgno wrote
Reply to comment by meowcats734 in [WP] "Really?" The Dark Lord asked in disbelief, "This is the best the Chosen One can do? Screw it. If we're doing this, we're going to do this properly. I'll train you." 10 years later, your training is complete, but your time spent with the Dark Lord has given you some conflicting feelings. by IndependentWin6
bro wait it's still going? I must've got kicked off the butler.
Kulpas t1_iycfb2x wrote
Reply to ELI5: why is using "goto" considered to be a bad practice in programming? by Dacadey
As a side note: goto is often used in code golfing (the act of trying to write a piece of code in as small amount of characters as possible) because well, it's shorter than writing 'while(1)' for example.
In the case of PICO-8 (and by extension Lua) it's the difference between "
::x::
do stuffgoto x
" and"while 1 do
do stuffend
" which is 2 characters longer