mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-01 07:27:55 -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 ChemistGame {
|
|
public static void main(String[] args) {
|
|
Chemist chemist = new Chemist();
|
|
chemist.play();
|
|
}
|
|
}
|