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.
