0
What's wrong with this program?
public class Classroom { void learn () { System.out.println("receiving..."); } } class MeetUp { public static void main (String[]args) { Student newbie = new Student(); newbie.learn(); } }
1 ответ
0
Never mind, I got it. I have to create an object off a class. 😀