On 3/16/2012 14:14, bruno.desthuilli...@gmail.com wrote:
On Mar 16, 1:45 pm, Ray Song<emacs...@gmail.com>  wrote:
I confess i've indulged in Haskell and found
     f a
more readable than
     f(a)

Hmmm... What about:

     f a b

versus

     f(a(b))

or was it supposed to be read as

     f(a)(b)


or as

    f(a, b)

?-)

That would be
  f (a b)          # Haskell
  f(a(b))          # Python

Kiuhnm
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to