Update Tasks authored by Ziyang Zhang's avatar Ziyang Zhang
......@@ -13,8 +13,7 @@ Please notice, you need to load correct modules to run the sample AIs. You can a
## Program Your AI
    Once you have your environment setup, you can start to program your agent. In the ‘src’ folder of your shell you will find the source code of the project. You are only allowed to make changes to the StudentAI file. You **should not** delete any existing classes and variables, but you are allowed to add new classes and member variables/attributes.
## Compile Your AI
&emsp;&emsp;&emsp; For C++ coders, compiling your program is easy as executing the command `make` from the root of your source files (src/connect-k-cpp/).<br>
&emsp;&emsp;&emsp; For Java coders, to compile your program, you need to execute command `make build` to compile your source files, and the execute command `make jar` to compile all the .class files into one jar file. If you like, you can then use `make clean` to delete all .class files.<br>
&emsp;&emsp;&emsp; For C++ and java coders, compiling your program is easy as executing the command `make` from the root of your source files (src/checker-cpp/ or src/checker-java/).<br>
&emsp;&emsp;&emsp; For python coders, you do not need to compile your program. Our runner can execute .py file directly.<br>
## Test Your AI
&emsp;&emsp;&emsp; To run your program after you have compiled it, navigate to the bin folder. You should find the compiled program inside. Refer to the Shell Manual Appendix for help running it.
......
......