.PHONY: all run test clean

all: run

run:
	node calculator.js

test:
	node test.js

clean:
	@echo "No build artifacts to clean"
