mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-11 20:55:40 -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();
|
|
}
|
|
}
|