49
Byomeer
7y

This is some next level goto bullshit...

Comments
  • 13
    I had no idea you could just goto an address like that. Crazy.
  • 7
    I personally like the "Note that this can be an undefined behavior" part most...
  • 10
    @Byomeer Note: This code can result in unexpected job firings and death threats. Use with caution.
  • 0
    Could be worse, at least there is no COMEFROM involved.
  • 2
    Why the fuck are people using goto in 2017!?
  • 2
    Why do u hate go-to that is beautiful CodeπŸ˜‚πŸ˜‚πŸ˜‚πŸ˜‚:

    start:
    ...
    if (...)
    {
    goto start
    }
    ...
    goto end

    somethingelse:
    if (...)
    {
    goto start
    }

    end:
    if (...)
    {
    goto nochwas
    }
    goto start

    PS.: Found a similar one on that Website: https://autoit.de/index.php/Thread/...
Add Comment