APP_NAME = language-change.exe

all: build

build:
	go build -o $(APP_NAME) ./

run: build
	./$(APP_NAME)

clean:
	rm -f $(APP_NAME)
