Illegal start of expression error
1002412Apr 11 2013 — edited Apr 13 2013class Test1
{
public static void main(String args[])
{
void show()
{
System.out.print("its working");
}
show();
}
}
When i compile this program i find the error illegal start of expression
^void show
Test1.java5 ';' is expected