Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class mainGame
  2. {
  3. public static void main(String[] args) throws InterruptedException
  4. {
  5. Nim game = new Nim();
  6.  
  7. game.rules();
  8.  
  9. game.play();
  10. }
  11.  
  12. }