John Conway's Game of Life
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| <!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="file:///home/boris/src/hub.darcs.net/game-of-life-js/index.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/ramda/0.22.1/ramda.min.js"></script>
</head>
<body>
<div style="text-align: center">
<div id="container" style="display: inline-block;width: auto"></div>
<button id="start" onclick="start(this)">Start</button>
</div>
<script src="file:///home/boris/src/hub.darcs.net/game-of-life-js/finite.js"></script>
</body>
</html>
|