helloworld example


/ Published in: Java
Save to your folder(s)

output the 'helloworld' string


Copy this code and paste it in your HTML
  1. public class HelloWorld{
  2. public static void main(String[] args){
  3. System.out.println("Hello world!");
  4. }
  5. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.