| Function | Command |
| Run the program without parameters (it will give information on parameters and options and exit) | java -classpath robocode.jar;rlltest.jar rlltest.RobocodeLittleLeague |
| Start a one-on-one division from division.txt using standard scoring | java -classpath robocode.jar;rlltest.jar rllteset.RobocodeLittleLeague division.txt |
| Start a melee division from division.txt using femto scoring | java -classpath robocode.jar;rlltest.jar rlltest.RobocodeLittleLeague -mf division.txt |
| Perform a lines/codesize analysis of foo.BarBot_1.0.jar (can only be done on jars, sorry) | java -classpath robocode.jar;rlltest.jar rlltest.RobocodeLittleLeague -a robots\foo.BarBot_1.0.jar |
| Find the rating spread of bot1 over bot2, where bot1 beat bot2 2000-1000, using standard scoring | java -classpath robocode.jar;rlltest.jar rlltest.RobocodeLittleLeague -r 2000 1000 |
| Find the rating spread of bot1 over bot2 where bot1 beat bot2 2000-1000 and bot1 is 150 bytes and bot2 is 80 bytes using femto scoring | java -classpath robocode.jar;rlltest.jar rlltest.RobocodeLittleLeague -rf 2000 1000 150 80 |
| Print version of rlltest | java -classpath robocode.jar;rlltest.jar rlltest.RobocodeLittleLeague --version |
| Get help/options information | java -classpath robocode.jar;rlltest.jar rlltest.RobocodeLittleLeague --usage |
| Use the codesize utility directly | java -classpath robocode.jar;rlltest.jar codesize.Codesize |