Golly 3.0

For general discussion about Conway's Game of Life.
drc
Posts: 1664
Joined: December 3rd, 2015, 4:11 pm

Re: Golly 3.0

Post by drc » October 12th, 2017, 7:08 pm

Request: Make ruletables more 'programmable' e.g. basic arithmetic functions with variables

For example:

Code: Select all

0,1,1,1,1,1,1,1,1,(1+1)
would be the same as

Code: Select all

0,1,1,1,1,1,1,1,1,2
Maybe use variables so we could have custom ruletables?

Code: Select all

var iss8={1}
var t={0,1,1,1,1,1,1,0,0,1}
0,1,1,1,0,0,0,0,0,1
1,1,1,0,0,0,0,0,0,1
1,1,1,1,0,0,0,0,0,1
t[0],t[1],t[2],t[3],t[4],t[5],t[6],t[7],t[8],t[9]
iss8,iss8,iss8,iss8,iss8,iss8,iss8,iss8,iss8,iss8

Post Reply