# Experiment with the make command!

Start: A1 A2
	@echo Start
A1: A3
	@echo A1
A2: A3
	@echo A2
A3:
	@echo A3
