Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
public class Main {
public static void main(String[] args) {

Student stud1 = new Student("mark kuol", 1, new int[]{78});
Student stud2 = new Student("jackson tombe", 2, new int[]{87});
Student stud1 = new Student("mark", 1, new int[]{78});
Student stud2 = new Student("jackson", 2, new int[]{87});
Teacher teach1 = new Teacher("mr.Dominic peter","advanced java");
College college =new College("informarics", new ArrayList<Student>(), new ArrayList<Teacher>());

Expand Down