generated from technolyceum/Git-Scavenger-Hunt
14 lines
262 B
Java
14 lines
262 B
Java
package com.csase;
|
|
|
|
public class PlannerRunner {
|
|
public static void main(String[] args) {
|
|
|
|
// Create a new student
|
|
Student jada = new Student();
|
|
|
|
// Gets the student's choice until the student exits
|
|
jada.getChoice();
|
|
|
|
}
|
|
}
|