summaryrefslogtreecommitdiff
path: root/src/index.js
blob: 70c9695922dfdab749adee110c3182a0d5bfd0b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { prepareBoard } from "./board.js"
import { nextTurn } from "./engine/turns.js"


function start() {
    prepareBoard()
    nextTurn()
}


start()