show/hide this revision's text 3 added example

Dynamic typing. For people coming from Perl, Python, Ruby, etc. Java's type system is a straitjacket that serves no purpose but to get in the way. Other nice things are regexes as first class citizens and closures. For instance, how much more code do you need in Java to read in every file passed on the commandline and print out only the lines that contain the string "new".

for (file in args) {
        new File(file).eachLine { line -> 
                if (line =~ /new/) {
                        println line
                }
        }
}

Note, that is the entire program, not a snippet from a larger program.

show/hide this revision's text 2 On dynamic programming: "You keep using that word. I do not think it means what you think it means."

Dynamic programmingtyping. For people coming from Perl, Python, Ruby, etc. Java's type system is a straitjacket that serves no purpose but to get in the way. Other nice things are regexes as first class citizens and closures.

show/hide this revision's text 1

Dynamic programming. For people coming from Perl, Python, Ruby, etc. Java's type system is a straitjacket that serves no purpose but to get in the way. Other nice things are regexes as first class citizens and closures.