Here's how you write hello-world in Java
class Hello { public static void main(String[ ] args) { System.out.println("Hello world!"); } }
and in Arc
(def hello () (prn "Hello world!"))