mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-11 12:45:47 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
9 lines
157 B
Java
9 lines
157 B
Java
public class BombsAwayGame {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
BombsAway bombsAway = new BombsAway();
|
|
bombsAway.play();
|
|
}
|
|
}
|