Java version of Slots

This commit is contained in:
journich
2021-02-28 08:14:17 +10:30
parent 98eaa2ff45
commit 3a902ffd64
3 changed files with 308 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
public class SlotsGame {
public static void main(String[] args) {
Slots slots = new Slots();
slots.play();
}
}