Java - Packages and Access Control
Identify the error in the following code:
public class Alpha {
public int number;
}
class Beta {
public static void main(String[] args) {
Alpha a = new Alpha();
System.out.println(a.number);
}
}