7 lines
125 B
Text
7 lines
125 B
Text
|
// The main method can be inherited from another class
|
||
|
|
||
|
class OtherMain {
|
||
|
void main () {}
|
||
|
}
|
||
|
|
||
|
class Main extends OtherMain {}
|