Advent of code 2022 with go to learn the language Other solutions https://codeberg.org/derat/advent-of-code Notes to self about lang defining variable type infered -> x := 10 type not infered -> var x int = 10 Running go run hello.go .go package main at top main function to execute func main() { } import "package"