This example does go on for a while, actually - but don’t let the specifics distract you. While it goes rather in-depth, it illustrates a larger point. Most of Go’s APIs (much like NodeJS’s APIs) are designed for Unix-like operating systems. This is not surprising, as Rob & Ken are from the Plan 9 gang. So, the file API in Go looks like this: // File represents an open file descriptor. type File s
