DEV Community

Discussion on: The Coolest Programming Language Features

Collapse
 
edh_developer profile image
edh_developer

I liked Venkat Subramaniam's book, "Programming Groovy".

Hello World is just...

println "Hello World!"

Thread Thread
 
renegadecoder94 profile image
Jeremy Grifski

That sure beats the heck out of:

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