Command Line Arguments and File I/O
1. Command Line Arguments and File I/O
Setup
$ go get golang.org/x/tools/cmd/goimports
...
$ mkdir engineitops
$ cd engineitops
Hello World
$ touch hello.go
// hello.go
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello World!...
blog.cloudnativefolks.org3 min read