Skip to content

Instantly share code, notes, and snippets.

View mcgingras's full-sized avatar
🗻
snowy peak

Michael Gingras mcgingras

🗻
snowy peak
View GitHub Profile
@mcgingras
mcgingras / tic-tac-toe.js
Created April 19, 2023 03:17
Terminal Tic Tac Toe (tttt)
const prompt = require("prompt");
prompt.start();
const state = [
[" ", " ", " "],
[" ", " ", " "],
[" ", " ", " "],
];
const printBoard = (state) => {