1//print and create new line after
2System.out.println("text");
3System.out.println(String);
4//You can use any variable type, not just strings, although
5//they are the most common
6
7//Print without creating a new line
8System.out.print("text");
9System.out.print(String);
1System.out.println("Hello, World!");
2/*type System the class, the .out the field, and the println short
3for print line */
4
1System.out.print("one");
2System.out.print("two");
3System.out.println("three");
4
5// RESULT = 'onetwothree'