Friday, April 1, 2011

Illegel

/*
RULE: following are some illegel identifiers
*/

class Illegel
{
public static void main(String[] args)
{
int 7g;
int .j;
int -m;
int :b;
int s#;
int int;
int for;
int enum;
System.out.println("illegal identifiers");
}
}