So I've been learning some basics of #golang since my team has started building most our services with that language. Got to the section on #go concurrency and was ready to strap in and learn all about thread pools, etc. Come to find out simply putting the word `go` in front of a function will create a #goroutine that will then run concurrently. What!?! Mind blown.