43

You know you're a programmer when you're doing math and you write == instead of = (Am I the only one who does this?)

Comments
  • 2
    😂ha me too, i also write "and" like && by mistake
  • 2
    I hate when people write =/= instead of != in comments
  • 0
    Haha its the same for me as well
  • 0
    Sometimes when I need to write on paper I put ; in the end of the line 😜
  • 0
    ; instead of .
  • 1
    You don't just turn your math problems into code? Pffft
  • 1
    Did you just assume my programming language? ☺

    That happened to me once too.
  • 1
  • 1
    My problem is bigger. I always write `:w` (vim save command) right after I finish a sentence or paragraph.:w
    Shit! Not again.
    Well, this one is fake. :))
    I only do that with laptop keyboard.
  • 0
    At first we learned C# at school. Half a year ago we switched to python where '==' is 'is' and '!=' is 'not is', so a very basic language. My school mates don't know any other languages, only C# and Python. They don't have these problems. Personally I code since (about) 7 years and I don't use Python at home, so I have these problems. Mostly I write ';' at the end;
  • 2
    @Gurkengewuerz or 'is not' but
    `is != ==`
    or if you want
    `is is not ==`
    They ahve different meanings sometimes.
    `x is y` implies `x == y`, but they have different meaning. First one compares objects and yields True only if x and y refer to one object. The later one checks for value equality.
Add Comment