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
1String[] array = new String[] {"John", "Mary", "Bob"};
2System.out.println(Arrays.toString(array)); // [John, Mary, Bob]
1//Syntax
2System.out.println("Hello World!");
3// Requests the system to output, print a new line of sting Hello World!
4// Output: Hello World!