Friday, April 1, 2011

identifyrs starts with characters

/*
RULE: identifyrs starts with characters(a to z or A to Z)
or starts with underscore (_) and currency ($)
not starts with numbers
*/

class StartWith
{
public static void main(String[] args)
{
int $x;
int _a;
int m;
System.out.println("legal identifiers");
}
}