We had a good discussion while I was in the informal meetup today, and I'm putting together a summary of action items we might want to consider for outreach (more blog posts, more content on short-form video sites, refreshing old articles and projects). One of the ideas I had that I really want to dig into is that new developers aren't looking for their next "enterprise application" language. They want to run something small, quickly. Java is not known for being small or quick.
I wanted to try playing with the "small" hello world, since it was mentioned that other language fans still use this as a way to dunk on Java.
I believe the smallest we can get right now in 25 (as a readable one-liner without golfing) is:
void main() { IO.println("Hello!"); }