Skip to content

Commit ddbf9ee

Browse files
committed
upd Cli.java
1 parent ac7d5b3 commit ddbf9ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/hexlet/code/Engine.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ public static void userGreetings() {
1010
Scanner sc = new Scanner(System.in);
1111
System.out.println("Welcome to the Brain Games!\nMay I have your name?");
1212
userName = sc.next();
13-
System.out.println("Hello " + userName + "!");
13+
System.out.println("Hello, " + userName + "!");
1414
}
1515
public static void selectGame() {
1616
String[] gamesList = {"1 - Greet", "2 - Even", "3 - Calc", "4 - GCD",

0 commit comments

Comments
 (0)