mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-08 11:24:49 -08:00
8 lines
151 B
Java
8 lines
151 B
Java
public class HamurabiGame {
|
|
public static void main(String[] args) {
|
|
|
|
Hamurabi hamurabi = new Hamurabi();
|
|
hamurabi.play();
|
|
}
|
|
}
|