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.println("whatever you want");
2//you can type sysout and then ctrl + space
1System.out.print(<string>); //prints in the same line as the previous print
2System.out.println(<string>); //prints in a new line
3
4// Example
5System.out.print("This ");
6System.out.print("will ");
7System.out.print("be ");
8System.out.print("all ");
9System.out.print("in ");
10System.out.print("one ");
11System.out.print("line.");
12
13System.out.println("Hello World!");
14System.out.println("second line");