On Mon, 24 Jul 2006 14:23:21 +0200, Sybren Stuvel wrote:

> Another reason for me not to use Ruby, is that there is no distinction
> between those two lines of code:
> 
> x = somefunc
> x = somefunc()

It has no meaning. Just use always () if you like. But sometimes it is
better to avoid them to have more beautifull code. E.g.

class Article < Activerecord::Base
  belongs_to: author
  has_many: comments
end

-- 
Jarosław Zabiełło
http://blog.zabiello.com
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to