mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-28 05:33:48 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
7 lines
145 B
Java
7 lines
145 B
Java
public class SynonymGame {
|
|
public static void main(String[] args) {
|
|
Synonym synonym = new Synonym();
|
|
synonym.play();
|
|
}
|
|
}
|