mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-07-02 02:54:32 -07:00
d26dbf036a
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
8 lines
141 B
Java
8 lines
141 B
Java
public class HurkleGame {
|
|
|
|
public static void main(String[] args) {
|
|
Hurkle hurkle = new Hurkle();
|
|
hurkle.play();
|
|
}
|
|
}
|