advent-of-code/learning/Go.md
2020-12-04 19:45:03 +01:00

320 B

Go Learning

So this will be my first time at writing some go. Please excuse me for the ranting 😅

WTFs

  • Why is there no bitwise OR for bools?! Please what? XOR == a != b, but still...
  • math.Max() only works with floats. Of course.

Syntax

  • we constantly need to write := which is annoying as hell