/**
 * Title:        First Java Progam for TINI<p>
 * Description:  Sends hello world
 * blinks the CPU LED
 * echos command line args<p>
 * Copyright:    Copyright (c) B Boyes<p>
 * Company:      Systronix<p>
 * @author B Boyes
 * @version 1.0
 */
package hello_first;

import com.dalsemi.comm.*;
import com.dalsemi.system.*;
import com.dalsemi.jellybeans.*;

public class hello_world
{

  // our default constructor
  public hello_world()
  {
  }

  // a method we are adding
  static void PrintHello () throws Exception
  {
    System.out.println("Hello World from TINI");
  }

  public static void main(String[] args)
  {
    hello_world hello_world1 = new hello_world();

    try
    {
        System.out.println("My First Program Starting");
        hello_world1.PrintHello();
        System.out.println("Normal Exit");
    }
    catch (Throwable e)
    {
      System.out.println("Exception");
      System.out.println(e);
    }
  }
}