mirror of
https://github.com/osmarks/website
synced 2024-11-08 20:29:55 +00:00
25 lines
374 B
HTML
25 lines
374 B
HTML
|
---
|
||
|
title: Game of Life V2
|
||
|
description: Obligatory (John Conway's) Game of Life implementation.
|
||
|
slug: gol
|
||
|
---
|
||
|
<style>
|
||
|
td.on {
|
||
|
background: white;
|
||
|
}
|
||
|
td.off {
|
||
|
background: black;
|
||
|
}
|
||
|
|
||
|
td {
|
||
|
width: 1vw;
|
||
|
height: 1vw;
|
||
|
border: 1px solid gray;
|
||
|
}
|
||
|
|
||
|
table {
|
||
|
border-collapse: collapse;
|
||
|
}
|
||
|
</style>
|
||
|
<div id="app"></div>
|
||
|
<script src="out.js"></script>
|