Untitled
Anonymous
java
04/20/2023 4:02 PM
472 B
14
Indexable
public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}
class Motorbike {
Engine engine;
public void Run(){
this.engine.startTheEngine();
}
}
class Engine {
String type;
public void startTheEngine(){
System.out.println(type);
}
}Editor is loading...