System.out.println("Players take turns marking a square."
+ "
Only squares not already marked can be picked."
+ "
Once a player has marked three squares in a row, he or she wins!"
+ "
If all squares are marked and no three squares are the same, a tied game is declared."
+ "
Have Fun!");
Integer test = 123;
String str = ":)";
System.out.println("Hello" + " " + "World!" + str + " " + test);
// Output:
// $> Hello World!:) 123