Conway's Game of Life: Difference between revisions

Content added Content deleted
No edit summary
No edit summary
Line 7,287: Line 7,287:


=={{header|FutureBasic}}==
=={{header|FutureBasic}}==
This is just the central routine, as basic as possible...
This is just the basic central routine.
<syntaxhighlight lang="futurebasic">
<syntaxhighlight lang="futurebasic">


Short a(4, 4), c(4, 4) // Array of cells and working copy
Short a(4, 4), c(4, 4) // Initialize arrays of cells and a working copy


void local fn seed
void local fn seed