HelloWorld!
| package com.langsin.Test; | |
| public class Test { | |
| //HelloWorld ! | |
| public void showHelloWorld() { | |
| System.out.println("Hello World!"); | |
| } | |
| public static void main(String[] args) { | |
| new Test().showHelloWorld(); | |
| } | |
| } |
| package com.langsin.Test; | |
| public class Test { | |
| //HelloWorld ! | |
| public void showHelloWorld() { | |
| System.out.println("Hello World!"); | |
| } | |
| public static void main(String[] args) { | |
| new Test().showHelloWorld(); | |
| } | |
| } |