13 lines
265 B
Java
13 lines
265 B
Java
public class StartGrading {
|
|
public static void testCourse()
|
|
{
|
|
// Since we cannot create any Course object,
|
|
//the testCourse method of the Course class must be empty.
|
|
}
|
|
|
|
public static void main(String[] args)
|
|
{
|
|
testCourse();
|
|
}
|
|
}
|