Gol checkpoint

run these commands in your Lab9 repo (you can copy the whole set and paste into the window running the shell):
echo "10" > out 
./gol square100.txt 0 10 1 1 >> out
./gol square100.txt 0 10 0 1 >> out
echo "4" >> out 
./gol square100.txt 0 4 1 1 >> out
./gol square100.txt 0 4 0 1 >> out 
echo "3" >> out 
./gol square100.txt 0 3 1 1 >> out
./gol square100.txt 0 3 0 1 >> out 
echo "6" >> out 
./gol square100.txt 0 6 1 1 >> out
./gol square100.txt 0 6 0 1 >> out 

(make sure to hit the Enter key at the end)

Then do this:

git add out
git commit -m "chkpt"
git push