Different OOP systems



examples/hello_world.py
print("Hello World")

examples/HelloWorld.java
public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello World");
    }
}

"abc".upper()