mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-27 13:14:15 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
7 lines
130 B
Java
7 lines
130 B
Java
public class DiceGame {
|
|
public static void main(String[] args) {
|
|
Dice dice = new Dice();
|
|
dice.play();
|
|
}
|
|
}
|