# Experiment with the make command.

go: hello date list
	@echo Goodbye!
hello:
	@echo Hello!
date:
	@date; date; date
list:
	@pwd; ls
