mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-29 06:05:36 -08:00
9 lines
137 B
Java
9 lines
137 B
Java
public class ChiefGame {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
Chief chief = new Chief();
|
|
chief.play();
|
|
}
|
|
}
|