https://github.com/pykello/elm-tictactoe
Tic-tac-toe implementation in Elm.
https://github.com/pykello/elm-tictactoe
Last synced: about 1 year ago
JSON representation
Tic-tac-toe implementation in Elm.
- Host: GitHub
- URL: https://github.com/pykello/elm-tictactoe
- Owner: pykello
- License: unlicense
- Created: 2015-11-14T09:47:32.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-20T06:30:48.000Z (over 10 years ago)
- Last Synced: 2025-04-10T10:21:05.309Z (about 1 year ago)
- Language: Elm
- Homepage: http://pykello.github.io/elm-tictactoe/
- Size: 92.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tic-tac-toe in Elm
This is [tic-tac-toe](https://en.wikipedia.org/wiki/Tic-tac-toe) written in [Elm language](http://elm-lang.org/). I wrote it as my first attempt to learn Elm.
You can see it in action at [http://pykello.github.io/elm-tictactoe/](http://pykello.github.io/elm-tictactoe/).
# Building
Run the following command to generate a HTML file which implements tic-tac-toe:
```
elm make tictactoe.elm --output=tictactoe.html
```
You can open ```tictactoe.html``` in your browser and see the output.