@monorail goto pizza is the name of a pizza restaurant owned by programmers isn't it
@The_T probably not; goto considered harmful :P
@monorail I'm never going to learn how to program~
@vaporeon_ @The_T @monorail hi vaporeon do you use GOTO
@wallhackio @The_T @monorail If I have any excuse to, then of course I do
Though that doesn't happen very often... And in my experience, if my code ends up having a lot of GOTOs, then that's because I am thinking wrongly about the logic and need to take a step back and find a better structure...
@vaporeon_ @The_T @monorail i was curious if you had any strong feeling about it
i've only used GOTO in TI-BASIC because the menu feature requires it, other than that i dont use it out of habit since people tend to discourage its use nowadays
@wallhackio @vaporeon_ @The_T @monorail I think it's acceptable for error handing in some C stuff and derivatives (to the extent that C is acceptable), but in general I would frown on "backwards" goto that jumps into different functions or earlier in the same one just because it makes things hard to follow. (Except, as you mention, where there aren't really functions, in which case, sure, it's a jump, you need them.)
@aschmitz @vaporeon_ @The_T @monorail how are arguments from a function treated if you jump into it?