Hacker News new | ask | show | jobs
by aidos 828 days ago
To be that guy, not quite a python level of tersity!
2 comments

Well, if they added System.out in the default context, it could've been just

    println("Hello world!")
I think that's as far as you can go.
# Python 3

p = print # the print() function

# Now we can do:

p("Hello world")

# endlessly, in this file.

Shorter by 17-odd characters than the above Java version.