advent-of-code/learning/Go.md

14 lines
320 B
Markdown
Raw Normal View History

2020-12-04 19:45:03 +01:00
# 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