mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-06-29 01:38:22 -07:00
d26dbf036a
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
9 lines
152 B
Java
9 lines
152 B
Java
public class BullseyeGame {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
Bullseye bullseye = new Bullseye();
|
|
bullseye.play();
|
|
}
|
|
}
|