General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
p11
ThePrimeTime
comments
Comments by "p11" (@porky1118) on "Real Programers Don't Use Pascal" video.
8:20 Whenever my program gets a little more complicated, I use a lot of goto anyway. In rust I can have named blocks now and then either break from them (goto after the block), or continue them (if they are declared as loop, so a goto to the beginning of the block). And loops shouldn't loop by default. Most of my loops have a break at the end anyway. They usually look somewhat like this: for (;;) { if (...) continue; ... if (...) continue; ... break; } This wolud be written easer with goto: loop: if (...) goto loop; ... if (...) goto loop; ... And the break at the end isn't even neccessary.
2
29:45 Orios already exist for that long? They only came to Germany around 10 years ago I think.
1