Skip to content

Instantly share code, notes, and snippets.

@Cellane
Created December 13, 2010 08:15
Show Gist options
  • Save Cellane/738783 to your computer and use it in GitHub Desktop.
Save Cellane/738783 to your computer and use it in GitHub Desktop.
public class StudentTest {
public static void main (String args[]) {
Student student1, student2;
student1 = new Student ();
student2 = new Student ("Sue", 1980, "Informatics", 60);
student1.print ();
student2.print ();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment