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