mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-30 22:52:00 -08:00
7 lines
135 B
Java
7 lines
135 B
Java
public class SlotsGame {
|
|
public static void main(String[] args) {
|
|
Slots slots = new Slots();
|
|
slots.play();
|
|
}
|
|
}
|