Langton's ant: Difference between revisions

Fixed first D entry chirality
m (First D entry: removed one import)
(Fixed first D entry chirality)
Line 753:
final switch(dir) with (Direction) {
case up: y--; break;
case right: x++--; break;
case down: y++; break;
case left: x--++; break;
}
}