Jump to content

Scala (programming language)

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by TakuyaMurata (talk | contribs) at 07:33, 7 March 2004 (stub). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

In computing, Scala is a multi-paradigm programming language designed to "express common programming patterns in a concise, elegant, and type-safe way." [1]

Hello Word program with Scala looks as follows.

object HelloWorld with Application {
  Console.println("Hello, world!");
}