A simple problem that confounds me....
Hi everyone,
Im hoping this is a painfully simple mistake Im making, and not a profound one. My goal is to pring out a diamond display, and this is the code Ive written so far. If anyone can point out what might be wrong with it I would appreciate it.
publicclass DiamondDisplay
{
// begin main method
publicstaticvoid main ( String args[] );
{
System.out.println("*");
System.out.println("***");
System.out.println(" *****");
System.out.println(" *******");
System.out.println("*********");
System.out.println(" *******");
System.out.println(" *****");
System.out.println("***");
System.out.println("*");
}// end method
}// end class
When I compile this I get the following error....
DiamondDisplay.java:6 missing method body, or declare abstract
public static void "m"ain (String args[]);
1 error
Thanks in advance for any assistance.

