9 lines
76 B
Makefile
9 lines
76 B
Makefile
SHELL := /bin/bash
|
|
|
|
build:
|
|
go build -o main main.go
|
|
|
|
run:
|
|
go run main.go
|
|
|