1
2
3
4
5
6
class Greeter {
    void greet() {
        System.out.println("hello");
        System.out.println("from right");
    }
}