mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-25 04:15:45 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
9 lines
137 B
Java
9 lines
137 B
Java
public class PizzaGame {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
Pizza pizza = new Pizza();
|
|
pizza.play();
|
|
}
|
|
}
|