"Tim Daneliuk" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> So it is claimed:
>
>
http://www.infoq.com/news/Scala--combing-the-best-of-Ruby-;jsessionid=CC7C8366455E67B04EE5864B7319F5EC
>
> Has anyone taken a look at this that can provide a meaningful contrast
> with Python?

Ok, here's the Hello World example from the Scala website:

object HelloWorld {
  def main(args: Array[String]) = {
    Console.println("Hello, world!")
  }
}

Opening and closing braces?
"def main(args: Array[String])"?
Console.println?

About the only Pythonic thing I can see here is the "def" keyword.
Otherwise, it looks too much like Java - no, thanks!

-- Paul


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

Reply via email to