Skip to content

nickknw/arbitrarily-sized-tic-tac-toe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Arbitrarily-Sized Tic Tac Toe

An exercise-turned-project, this is a command-line version of Tic Tac Toe that allows arbitrarily sized square boards. At size 15 it becomes Gomoku and at size 19 it becomes Connect6

Usage

scalac TicTacToe.scala
scala -Dfile.encoding=UTF-8 TicTacToe

or

./run-with-proper-encoding.sh

The contents of run-with-proper-encoding.sh are:

#!/bin/bash

if [ ! -f "TicTacToe$.class" ]; then
    scalac TicTacToe.scala
fi

scala -Dfile.encoding=UTF-8 TicTacToe

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published