Files
git-scavenger-hunt/src/main/java/com/csase/PlannerRunner.java
2026-05-28 12:30:52 +00:00

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();
}
}