build:
	go fmt
	go vet
	go build -o bin/example main.go
	chmod u+x bin/example

clean:
	rm -rf bin
