Untitled
unknown
java
2 years ago
452 B
13
Indexable
public class HelloWorld {
public void print() {
System.out.print("I like to ");
eat();
eat();
eat();
fruit();
}
public void fruit() {
System.out.println("apples and bananas!");
}
public void eat() {
System.out.print("eat ");
}
public static void main(String[] args) {
HelloWorld helloWorld = new HelloWorld();
helloWorld.print();
}
}Editor is loading...