package
0.0.0-20240205144839-01d63041f4bf
Repository: https://github.com/fletchnj/learninggo-2e.git
Documentation: pkg.go.dev
# README
Exercise 2
Question
Add a target to the Makefile called clean
that removes the hello_world
binary and any other temporary files created by go build
. Take a look at the Go command documentation to find a go
command to help implement this.
Solution
See Makefile
in this directory.