1 package net.rmi.armi;
2
3 public class HelloWorld {
4 public HelloWorld() {
5 }
6
7 public static void main(String args[]) {
8 HelloWorld hw =
9 new HelloWorld();
10 hw.testGetMsg();
11 }
12
13 public String getMsg() {
14 return "Hello CR320";
15 }
16
17 public void testGetMsg() {
18 System.out.println(getMsg());
19 }
20 }
21