/**
 * Demonstrate a structured-programming view of a class.
 *
 * @author  Terry Sergeant
 * @version for Program Design 2
 *
 * We keep information about a student.  See StudentDemo.java
 *
*/

public class Student2
{
	int id;
	String name;
	double gpa;
}

