25.3.07

LeJOS (RCX)

Working?.

import josx.platform.rcx.*;

public class holamundo
{
public static void main (String[] aArg)
throws Exception
{
LCD.clear();
TextLCD.print ("hola");
Thread.sleep(2000);
TextLCD.print ("mundo");
Thread.sleep(2000);
}
}