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