import { prepareBoard } from "./board.js" import { nextTurn } from "./engine/turns.js" function start() { prepareBoard() nextTurn() } start()