forked from JavaTX/JavaCompilerCore
7 lines
121 B
Plaintext
7 lines
121 B
Plaintext
|
public class Superclass {
|
||
|
|
||
|
public void printMethod() {
|
||
|
System.out.println("Printed in Superclass.");
|
||
|
}
|
||
|
}
|