Skip to content

Commit e6dbcd5

Browse files
Adding comments to starter code
1 parent b4f1b35 commit e6dbcd5

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package org.launchcode.java.demos.school;
2+
3+
public class SchoolPractice {
4+
public static void main(String[] args) {
5+
// Instantiate your Student class for part 2 here!
6+
}
7+
}

src/org/launchcode/java/demos/school/Student.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
package org.launchcode.java.demos.school;
22

3+
// Start working here with your Student class.
4+
// To instantiate the Student class, add your code to the main in the file, SchoolPractice.
5+
36
public class Student {
47

58
private String name;

0 commit comments

Comments
 (0)