Conway's Game of Life: Difference between revisions

m
Line 3,857:
 
=={{header|Elena}}==
ELENA 45.x0, using cellular library
<lang elena>import extensions;
import system'threading;
Line 3,877:
constructor newRandomset(RuleSet transformSet)
{
theSpace := new IntMatrixSpace.allocate(maxY, maxX, randomSet);
 
theRuleSet := transformSet;
Line 3,886:
constructor newLoaded(RuleSet initSet, RuleSet transformSet)
{
theSpace := new IntMatrixSpace.allocate(maxY, maxX, initSet);
theRuleSet := transformSet;
Anonymous user