Friday, April 1, 2011

After the first character

/*
RULE: After the first character ( $ or _ or character ) identifiers contains
any thing i.e numbers also
*/

class AfterFirst
{
public static void main(String[] args)
{
int a333424;
int _34we;
int $a23deu;
System.out.println("legal identifiers");
}
}