summaryrefslogtreecommitdiff
path: root/java/Hello.java
blob: 04eadd7402f4cbd1e1939eab7b8427cb1495106b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package rtfl;

public class Hello
{
   int i1;
   Integer i2;
   String s1;

   public static void main (String[] args)
   {
      new Hello().hello();
   }

   public void hello()
   {
      System.out.println ("===== Hello Java! =====");
      i1 = 5;
      i2 = new Integer(7);
      s1 = "Hi!";
   }
}