import lejos.nxt.*;

/**
 see if leJOS NXJ is working -- try to display
 "Hello Spring 2015 CS 444" on a Lego NXT brick's
 display

 @author www.lejos.org
 @author adapted by S. Tuttle
 @version 2015-01-27
**/

public class Hello444
{
    /**
      see if leJOS NXJ is working -- try to display
      "Hello Spring 2015 CS 444" on a Lego NXT's display

      @param args not using
    **/

    public static void main(String[] args)
    {
        System.out.println("Hello Spring 2015 CS 444");
        Button.waitForAnyPress();
    }
}