One-dimensional cellular automata: Difference between revisions

Content added Content deleted
(One-dimensional cellular automata in BASIC256)
Line 394: Line 394:


printIt: function [arr][
printIt: function [arr][
print replace replace join map arr => [to :string] "0" "_" "1" "#"
print replace replace join map arr 'n -> to :string n "0" "_" "1" "#"
]
]