Initial commit

This commit is contained in:
2026-05-28 12:30:52 +00:00
commit f37624c2a3
35 changed files with 616 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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();
}
}