Java version of Hi-Lo game

This commit is contained in:
Tim
2021-02-18 13:49:33 +10:30
parent 60694f401f
commit 97bc875f7c
2 changed files with 222 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
public class HiLoGame {
public static void main(String[] args) {
HiLo hiLo = new HiLo();
hiLo.play();
}
}