Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
public class mainGame
{
public static void main(String[] args) throws InterruptedException
{
Nim game = new Nim();
game.rules();
game.play();
}
}