------ art_6248_26119211.1209750384664 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline > This is not possible without turning Ruby into either Python > (semantically significant whitespace) or Perl (required semicolons). > > Are you sure? While loops already require "semantically significant whitespace" or a semicolon: while true p :hi end # doesn't work while true; p :hi end # or while true p :hi end Isn't that kinda the same thing? ------ art_6248_26119211.1209750384664--