Play now! jeroo.org/beta
More info: jeroo.org
Jeroo is a text-based coding environment designed to help novices master the basic mechanics of object oriented programming. It features a limited syntax to emphasize basic computational thinking skills like problem decomposition (ie, breaking things down into subtasks), the semantics of control structures like loops and ifs, and use of objects and state to solve problems.
Solving problems involves writing a program that helps one or more kangaroo-like objects (ie, Jeroos) hop around an island while avoiding the nets set by animal collectors to achieve an objective. Along the way, Jeroos can pick up flowers growing on the island and use them to disarm nets. Jeroos must be careful to also stay out of the water, since they've never developed an ability to swim.
Jeroo has been used in high school and university classrooms for nearly 20 years, and many teachers find that it provides a great transition tool between the modern block-based systems like Scratch and a more general purpose programming language. The system allows learners to program using a variety of syntax styles to best align with the target programming language in a curriculum. In particular, you can choose between Java/C#, Python, or Visual Basic style syntaxes all within the same tool.
Our Introduction to Jeroo textbook provides an overview of how to program with Jeroo and gives more details about the system's backstory. Three different versions of the book are linked below, corresponding to the three language styles available. Pick the one that matches your target language. Note that the appendix materials showing screenshots of Jeroo are based on the stand-alone program, rather than the new web-based Jeroo--they're still a work in progress.
- Ben Konz
- Caelan Bryan
- Thomas Connole
- John Adam
- Brian Dorn
The best way to contact us with questions, comments or feature requests, is to email [email protected].
Build tools:
- yarn
- opam (m4 required by opam)
Opam is experimental on Windows, so I would stick to MacOS or Linux to build the compiler. Once the JerooCompiler.bc.js has been created, any platform can build the rest of the site.
cd src/compiler
opam switch create ./ ocaml-base-compiler.4.08.1
opam install --deps-only .
eval $(opam env)
dune build ./JerooCompiler.bc.js --profile release
dune runtest # optional, verify all compiler tests pass
The compiler JavaScript is located in jeroo/src/compiler/_build/default/JerooCompiler.bc.js
# cd to project root
yarn install
yarn build --prod
yarn test # optional, run unit tests
yarn e2e # optional, run end-to-end tests (only works on Firefox)
The newly built site is located in jeroo/dist/jeroo
Server link changed in environments/environment.ts
Port changed in angular.json
projects.serve.options.port
yarn start