Friday, April 1, 2011

NoLimit

/*
RULE: there is no limit to the number of characters in the identifiers
*/

class NoLimit
{
public static void main(String[] args)
{
int asdf_hghighiggu_jhgjhghgu_kjghuge_njgh$jfhfghaf;
System.out.println("No Limit ");
}
}