Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

You can compact a lot of whitespace out of python.

$ cat hello.py

    def helloooo():
        print "helloooo"
        print "SLAM!"
    
    helloooo()
$ cat hellomin.py

    def helloooo(): print "helloooo"; print "SLAM!"
    helloooo()


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: