-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
32 lines (26 loc) · 1.05 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
Purpose: Use GitHub and learn to fork, clone, modify, commit, push, pull request
a project repository.
Learn the sequential nature and necessary communication between team members
using GitHub as a shared software repository
Author of initial code base: Greg Schaper
Authors of modified code base: <Put Team Member Names Here>
TODO: Modify this software so that your team will be added to the course with each team member's
name being output after the team name is output.
This will require each team member to clone a forked repository (by one of the team members)
add their code to add their name to the team and save the changes to the shared repository.
Team names will be Team1, Team2, Team3, Team4 ... etc. as assigned in class.
Note: Try 2.
*/
package Project00a;
import java.util.*;
import Project00a.TeamCool;
import Project00a.Member;
public class Main {
public static void main(String[] args)
{
Course course = new Course();
course.createTeams();
course.printCourseMembers();
}
}