Friday, April 1, 2011

CaseSencitive



/*
RULE: identofiers are case sensitive ( balance and Balance are two different)
*/


class CaseSencitive
{
public static void main(String[] args)
{
int bal;
int Bal;
System.out.println("legal identifiers");
}
}