mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-26 20:54:07 -08:00
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();
|
|
}
|
|
}
|