I am Javaing!

Finally start my programming study. First topic is Java programming and the first program, of course, it's Hello World!

1
2
3
4
5
public class Welcome {
    public static void main(String[] args) {
        System.out.println("Hello World!");
    }
}

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.