dudenell
2008-03-04 22:42:53 UTC
public class testing {
static Library myLib;
public static void main(String[] args) {
//local variables
String PlayerName;
System.out.println("Please State your Player name");
PlayerName = Keyboard.readString();
myLib.clrscr();
System.out.println("this is your name" + PlayerName);
//End
}
}
here is my keyboard class
http://www.frag-gaming.com/download/Keyboard.class
and here is the error im getting
http://www.frag-gaming.com/download/myerror.jpg
any help?