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
1public class ConsoleTest {
2 public static void main(String[] args) {
3 System.out.println("Console is: " + System.console());
4 }
5}
1System.out.print(46); // prints on the same line
2System.out.println("Tree"); // prints code on a new line