Langton's ant: Difference between revisions

Removed one useless heap allocation from the first D entry
(Removed one useless heap allocation from the first D entry)
Line 1,304:
enum Color : char { white = '.', black = '#' }
uint x = width / 2, y = height / 2;
auto M = new Color[width][height](height, width)M;
auto dir = Direction.up;