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!"); } } |
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!"); } } |