Skip to content
John Maxwell edited this page Nov 16, 2015 · 5 revisions

Welcome to the ants-in-my-javascript wiki!

This is a JavaScript implementaton of Langton's Ant, running entirely in the browser.

Here's the list of Stories And here are some Annoyances that I don't have a story to drive me to fix yet.

Some random notes:

  • A cell is referred to by its row and column, in that order. Columns are numbered starting with the left-most column, which is column 0. Rows are numbered starting with the top row, which is row 0.

  • The ant's orientation is referred to by one of the strings 'left', 'right', 'up', or 'down', indicating which way the ant is facing.

Clone this wiki locally