We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b74aea0 commit 6b15210Copy full SHA for 6b15210
2 files changed
app/src/main/java/io/github/project516/NumberGuessingGame/GameLogic.java
@@ -22,6 +22,7 @@ void game() {
22
} else {
23
numOfGuesses++;
24
System.out.println("Took you " + numOfGuesses + " guesses!");
25
+ scan.close();
26
break;
27
}
28
app/src/main/java/io/github/project516/NumberGuessingGame/Main.java
@@ -12,7 +12,7 @@ public static void main(String[] args) {
12
debugInfo.launchDebug();
13
14
try {
15
-
+
16
gameInfo.about();
17
logic.game();
18
0 commit comments