https://github.com/doccaico/tic-tac-toe-nim
https://github.com/doccaico/tic-tac-toe-nim
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/doccaico/tic-tac-toe-nim
- Owner: doccaico
- Created: 2021-01-30T00:41:37.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-30T06:22:04.000Z (over 5 years ago)
- Last Synced: 2025-02-24T08:34:21.523Z (over 1 year ago)
- Language: JavaScript
- Size: 41 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Tic Tac Toe in Nim
Just a Tic Tac Toe game created in Nim
[Demo (JS version)](https://doccaico.github.io/tic-tac-toe-nim/)
### Build
```sh
# JS
$ nim js -d:Release -o:game.js main_js.nim
$ chrome docs/index.html
# terminal
$ nim c -d:Release main_terminal.nim
$ ./main_terminal
```
### main-js.nim (JS)