mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-03 16:48:04 -08:00
8 lines
156 B
Java
8 lines
156 B
Java
public class HammurabiGame {
|
|
public static void main(String[] args) {
|
|
|
|
Hammurabi hammurabi = new Hammurabi();
|
|
hammurabi.play();
|
|
}
|
|
}
|