This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Game of Life */ | |
var running = false; | |
var numrows = 40; | |
var numcols = 60; | |
var initialized = false; | |
var board = new Array(); | |
var timer; | |
var mousepress = false; | |
var paintcolour = "black"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Game of Life */ | |
var running = false; | |
var numrows = 30; | |
var numcols = 50; | |
var initialized = false; | |
var board = new Array(); | |
var timer; | |
var mousepress = false; | |
var paintcolour = "black"; |
NewerOlder