mirror of
https://github.com/cupcakearmy/advent-of-code.git
synced 2024-11-01 08:04:12 +01:00
16 lines
462 B
Markdown
16 lines
462 B
Markdown
# 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.
|
|
- so apparently we don't have optional parameters and defaults. Lol
|
|
- go has maps, but no native way of getting keys or values without a loop
|
|
|
|
## Syntax
|
|
|
|
- we constantly need to write `:=` which is annoying as hell
|