From: Yukihiro Matsumoto Date: 2007-05-18T23:24:23+09:00 Subject: Re: Why not adopt "Python Style" indentation for Ruby? Hi, In message "Re: Why not adopt "Python Style" indentation for Ruby?" on Fri, 18 May 2007 23:15:05 +0900, "S.Volkov" writes: |imho: indentation should not define semantic; Agreed. |suggestion: make 'end' optional if code block contains only one statement; I'm not sure if we can define syntax for above suggestion. while cond puts a puts b # delimit by indentation or else?? or maybe while cond: puts a # should be in same line matz.