Re: Mr. Conway in 50 lines of code (Posting On Python-List Prohibited)

2018-01-01 Thread Wu Xi
the short versions are not equivalent, proggy won't work with them > def neighbours(point): > x,y = point > > yield x + 1 , y > yield x - 1 , y > yield x , y + 1 > yield x , y - 1 #this is proof that life can emerge > inside of computers and cellular automat

Re: Mr. Conway in 50 lines of code (Posting On Python-List Prohibited)

2017-12-31 Thread Lawrence D’Oliveiro
On Sunday, December 31, 2017 at 11:13:41 PM UTC+13, Wu Xi wrote: > yield x + 1 , y > yield x - 1 , y > yield x , y + 1 > yield x , y - 1 #this is proof that life can emerge > inside of computers and cellular automatons, > > yield x + 1 , y + 1 #