33
Comments
  • 11
    If beer < 3 = beer++
    If 3 < beer < 10 = beer++
    If beer > 10 = beer++
  • 0
    Should be while loop tho 🤷‍♂️
  • 1
    @jonii the 2nd and 3rd one's have a line under the greater than and less than meaning greater than or equal and less than or equal.
  • 0
    @zlice hangover the next day is what the last one means
  • 2
    This is oddly relevant to me right now...
  • 0
    @hexc damnit didn't see that, but also not sure how I would do that on my phone
  • 1
    @jonii >= , <= ? Lol
  • 0
    @hexc oh, yeah.. I'm sorry I haven't really slept yet (8am here) :D
  • 1
    Guess you could abuse an integer underflow here.
  • 2
    unsigned long long long beer = 0;
    while (true){
    beer++;
    }
  • 0
    He will have 3 beers, and infinite coffee according to this logic
Add Comment