how to print something in java

Java
System.out.println("Hello, World!");
/*type System the class, the .out the field, and the println short 
for print line */
//print and create new line after
System.out.println("text");
System.out.println(String);
//You can use any variable type, not just strings, although
//they are the most common

//Print without creating a new line
System.out.print("text");
System.out.print(String);System.out.print("one");
System.out.print("two");
System.out.println("three");

// RESULT = 'onetwothree'
Source

Also in Java: