http://netbsd.i2p/gallery/presentations/maya/asiabsdcon-2019-golang-netbsd-arm64.html
Go - typical programming languages facts Compiled language Strongly typed Self-hosted (written in Go) Memory safe, garbage collected Build logic built into the language Go - unusual benefits Lightweight, easy concurrency (Small auto-growing stack, goroutines) Static binaries by default Extremely easy to cross-build (another OS, another architecture) GOOS=plan9 GOARCH=arm Typical programming language structure (C with GCC) ↓ C code ↓ Compiler (GCC) ↓ human-readable assembly ↓ Assembler...