hello: hello.cpp
	g++ -g -Wall -o hello hello.cpp

warn:
	g++ -g -Wall -o hello hello.cpp	 >warn.txt 2>&1

clean: 
	rm hello
