9 lines
110 B
Java
9 lines
110 B
Java
package ctors;
|
|
|
|
public class SuperThree {
|
|
|
|
SuperThree() {
|
|
System.err.print("Hello from SuperThree.");
|
|
}
|
|
}
|