mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 04:15:45 -08:00
8 lines
136 B
Java
8 lines
136 B
Java
public class ChiefGame {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
Chief chief = new Chief();
|
|
chief.play();
|
|
}
|
|
} |