mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-26 20:54:07 -08:00
Spaces tend to cause annoyances in a Unix-style shell environment. This change fixes that.
9 lines
182 B
Java
9 lines
182 B
Java
public class LiteratureQuizGame {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
LiteratureQuiz literatureQuiz = new LiteratureQuiz();
|
|
literatureQuiz.play();
|
|
}
|
|
}
|