this is a very simple program but i need help...
807606Mar 19 2007 — edited Mar 19 2007class Page {
Page a = new Page();
int ageOfMichael = a.giveAge();
int giveAge() {
return 16;
}
System.out.println(ageOfMichael);
}
it keeps saying <identifier> expected on the System.out.println line.
it's saved as Page.java by the way,