6 lines
176 B
Java
6 lines
176 B
Java
public class HelloWorld {
|
|
public static void main(String[] args) {
|
|
//Prints 'Hello world!' to terminal/console.
|
|
System.out.println("Hello world!");
|
|
}
|
|
}
|