add game of life

This commit is contained in:
2025-08-05 00:08:33 +02:00
parent a87bfef4f6
commit 180f50bdf6
2 changed files with 93 additions and 0 deletions

12
life.html Normal file
View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello typescript</title>
</head>
<body style="margin: 0; padding 0; overflow: hidden; background-color: #000000">
<canvas id="canvas" tabindex="0"></canvas>
<script type="module" src="./life.js"></script>
</body>
</html>