We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac7d5b3 commit ddbf9eeCopy full SHA for ddbf9ee
app/src/main/java/hexlet/code/Engine.java
@@ -10,7 +10,7 @@ public static void userGreetings() {
10
Scanner sc = new Scanner(System.in);
11
System.out.println("Welcome to the Brain Games!\nMay I have your name?");
12
userName = sc.next();
13
- System.out.println("Hello " + userName + "!");
+ System.out.println("Hello, " + userName + "!");
14
}
15
public static void selectGame() {
16
String[] gamesList = {"1 - Greet", "2 - Even", "3 - Calc", "4 - GCD",
0 commit comments