mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-28 13:46:06 -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();
|
|
}
|
|
}
|