Hey guys,
I am trying to run the program in Eclipse but it says " the editor doesn't contain the main type" and also i am not able to run the programs on server...
Please advise me and what settings to do in Eclipse!
i have typed simple programs like
public class Polish{
public static void main (
String[] args){
int x=4;
StringBuffer sb = new StringBuffer("..fedcba");
sb.delete(3, 6);
System.out.println(sb);
}
}
Thanks in advance!
Regards,
Deepa