You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Good job on the code style, I was able to follow things easily. One tip to automatically format your code is to press option + command + L (That should be the key combo to reformat code in IntelliJ)
You do have some extra line spacing in the code, it would be best if everything was consistent. Some comments in the code would also be nice to make it even easier for me to follow along.
I noticed you used single quotes when printing out text, you can have double quotes shown by escaping the quote.
You could do something like:
System.out.println("The voice on the other end says \"if you walk out of the booth a sniper will shoot you.\"");
Which would result in this being printed out:
The voice on the other end says "if you walk out of the booth a sniper will shoot you."
The text was updated successfully, but these errors were encountered:
You could do something like:
Which would result in this being printed out:
The text was updated successfully, but these errors were encountered: