Scala (Computer program language)

Enlarge text Shrink text
  • Topic
| מספר מערכת 987007599951105171
Information for Authority record
Name (Hebrew)
שפת תכנות מחשבים Scala
Name (Latin)
Scala (Computer program language)
Name (Arabic)
لغة سكالا (لغة برمجة)
See Also From tracing topical name
Functional programming languages
Object-oriented programming languages
Multiparadigm programming (Computer science)
MARC
MARC
Other Identifiers
Wikidata: Q460584
Library of congress: sh2010013203
Sources of Information
  • Work cat.: 2010033849: Steps in Scala : an introduction to object-functional programming, 2010.
  • Scala-lang.org WWW site, Aug. 24, 2010(Scala programming language)
  • Wikipedia, Aug. 24, 2010(Scala is a multi-paradigm programming language designed to integrate features of object-oriented programming and functional programming)
1 / 1
Wikipedia description:

Scala ( SKAH-lah) is a strongly statically typed high-level general-purpose programming language that supports both object-oriented programming and functional programming. Designed to be concise, many of Scala's design decisions are intended to address criticisms of Java. Scala source code can be compiled to Java bytecode and run on a Java virtual machine (JVM). Scala can also be transpiled to JavaScript to run in a browser, or compiled directly to a native executable. When running on the JVM, Scala provides language interoperability with Java so that libraries written in either language may be referenced directly in Scala or Java code. Like Java, Scala is object-oriented, and uses a syntax termed curly-brace which is similar to the language C. Since Scala 3, there is also an option to use the off-side rule (indenting) to structure blocks, and its use is advised. Martin Odersky has said that this turned out to be the most productive change introduced in Scala 3. Unlike Java, Scala has many features of functional programming languages (like Scheme, Standard ML, and Haskell), including currying, immutability, lazy evaluation, and pattern matching. It also has an advanced type system supporting algebraic data types, covariance and contravariance, higher-order types (but not higher-rank types), anonymous types, operator overloading, optional parameters, named parameters, raw strings, and an experimental exception-only version of algebraic effects that can be seen as a more powerful version of Java's checked exceptions. The name Scala is a portmanteau of scalable and language, signifying that it is designed to grow with the demands of its users.

Read more on Wikipedia >