mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-02 00:00:14 -08:00
9 lines
132 B
Java
9 lines
132 B
Java
public class HiLoGame {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
HiLo hiLo = new HiLo();
|
|
hiLo.play();
|
|
}
|
|
}
|