.PHONY: build run clean

build:
	go build -o hello main.go

run: build
	./hello

clean:
	rm -f hello
