Added bat file for first time jar creation

This commit is contained in:
John Landers
2018-10-24 17:39:02 -05:00
parent f63450052e
commit 87a53d90ef

7
first-start.bat Normal file
View File

@@ -0,0 +1,7 @@
cd gameoflife
javac GameOfLife.java
javac Main.java
jar cmvf manifest.mf ../GameOfLife.jar ./*.java ./*.class
cd ..
java -jar GameOfLife.jar
pause