Files
Fondamentaux-TP1/TTT_java/TicTacToeGame.java

7 lines
136 B
Java
Raw Normal View History

2025-10-14 17:21:26 +02:00
public class TicTacToeGame {
public static void main(String[] args) {
Game game = new Game();
game.start();
}
}