JAVA compilation error in UNIX
i have the java prog(abc.java) in 'sample' folder. when i compile using javac.....it gives the 2 errors as shown below...
this is the java prog...
public class abc {
public static void main(String aa[]) {
System.out.println("hello" );
}
}
------------------------------------------------------
/u/up11/sample:>ls
a.java abc.java first.java
/u/up11/sample:>javac abc.java
abc.java:1: 'æ' expected
public class abc {
^
abc.java:6: ';' expected
^
2 errors
---------------------------------------------------------
what is the reason for this :(
pls let me know if anyone knows a solution to this...
Thanks,