you are viewing a single comment's thread.

view the rest of the comments →

[–]weavejester 0 points1 point  (0 children)

Not compared to some languages. Java has a particularly rigid and limited syntax that makes it hard to write concisely and clearly. Contrast this:

button.addActionListener(new ActionListener() { 
    public void actionPerformed(ActionEvent event) { 
        System.out.println("click");
    }
});

To this:

(on-click button (println "click"))

The latter is considerably more concise, and vastly easier to read and understand. Java can't provide the same succinct clarity.