RosettaCodeData/Task/Hello-world-Newbie/Java/hello-world-newbie-3.java

12 lines
255 B
Java
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
public class HelloWorld {
public static void main(String[]args){
HelloWorld hw = new HelloWorld();
hw.run();
}
void run(){
//Print 'Hello world!' to console/terminal
System.out.println("Hello world!");
}
}