Zoe: organisms hunt, fight, mate, and reproduce under the control of programs that mutate and evolve.
To build the project from source:
./build.shThis will compile all Java source files and create Zoe.jar.
Alternatively, you can build manually:
mkdir -p bin
javac -d bin -sourcepath src $(find src -name "*.java")
jar cfm Zoe.jar src/META-INF/MANIFEST.MF -C bin .Run the application using:
java -classpath Zoe.jar org.holtz.zoe.zoeswing.ZoeFrameOr if you prefer the applet version:
java -classpath Zoe.jar org.holtz.zoe.zoeswing.ZoeApplet- Java JDK 8 or higher