scala_reserved_words_-_scala_keywords

Scala Reserved Words - Scala Keywords

Scala Reserved Words

This list includes keywords that are reserved in Scala. These keywords have special meaning in Scala programming and are part of the Scala language's syntax. They cannot be used as identifiers, such as Scala names for Scala variables, Scala functions, Scala classes, etc.

  • abstract - Specifies an abstract class or an abstract member.
  • case - Used for pattern matching and case class definitions.
  • catch - Catches exceptions generated by try blocks.
  • class - Declares a class.
  • def - Defines a method.
  • do - Begins a do-while loop.
  • else - Specifies an alternative branch in conditional expressions.
  • extends - Indicates that a class inherits from a superclass or a trait.
  • false - Boolean literal representing false.
  • final - Declares that an entity cannot be overridden.
  • finally - Specifies cleanup code that is always executed.
  • for - Begins a for loop or for-comprehension.
  • if - Begins a conditional expression.
  • implicit - Marks a declaration as available for implicit conversions and parameters.
  • import - Imports other Scala entities.
  • lazy - Delays the initialization of a value.
  • match - Used for pattern matching.
  • new - Creates a new instance of a class.
  • null - Represents a null reference.
  • object - Declares a singleton object.
  • override - Indicates that a member overrides another member.
  • package - Declares a package.
  • private - Restricts access to the containing class or object.
  • protected - Restricts access to subclasses of the containing class.
  • return - Returns a value from a method.
  • sealed - Restricts subclassing to the same file.
  • super - Refers to the superclass.
  • this - Refers to the current object.
  • throw - Throws an exception.
  • trait - Declares a trait.
  • try - Begins a block of code that is tested for exceptions.
  • true - Boolean literal representing true.
  • type - Declares a type alias or type parameter.
  • val - Declares an immutable value.
  • var - Declares a mutable variable.
  • while - Begins a while loop.
  • with - Specifies mixin composition.
  • yield - Produces values from a for-comprehension.

For more detailed information on each keyword and its use in Scala programming, refer to the official Scala documentation: https://docs.scala-lang.org/scala3/reference/soft-modifier.html Official Scala Documentation

This list provides a comprehensive overview of the keywords reserved by the Scala programming language, each serving a specific purpose within the language's syntax and semantics. Note that the provided URL points to the Scala 3 documentation, which covers the most recent version of the language as of my last update. Scala's official documentation is a valuable resource for understanding the role of these keywords in detail.


Creating a glossary of the top 60 Scala reserved words, sorted by their most common usage, presents a unique challenge since Scala, much like other modern programming languages, has a rich set of keywords and also allows many operations to be performed using its Scala standard library. Scala blends Scala object-oriented and Scala functional programming paradigms, and its Scala syntax allows for concise and expressive code. Scala does not have 60 reserved words in the strict sense, as its core is much smaller, but we will cover the essential keywords and include some important Scala concepts that are commonly used in Scala programming.

Scala Language Reserved Words Glossary

This glossary lists some of the most frequently used Scala reserved words and concepts, along with short Scala code examples to illustrate their usage. Scala's design allows for expressive code, blending object-oriented and functional programming paradigms.

val

Scala val: Declares a Scala immutable variable.

val x = 10

var

Scala var: Declares a Scala mutable variable.

var y = 5

def

Scala def: Defines a Scala method.

def add(a: Int, b: Int): Int = a + b

if

Scala if: Scala Conditional expression.

if (x > 0) "positive" else "non-positive"

else

Scala else: Part of a Scala conditional expression.

if (x > 0) "positive" else "non-positive"

while

Scala while: A Scala loop that executes as long as a condition is true.

while (x < 10) { x += 1 }

do

Scala do: Starts a Scala do-while loop, executing the Scala code block at least once.

do { x += 1 } while (x < 10)

for

Scala for: A Scala loop that Scala iterates over Scala elements in a Scala collection.

for (i <- 1 to 5) println(i)

yield

Scala yield: Used with Scala for-comprehensions to produce a new Scala collection.

val squares = for (i <- 1 to 5) yield i * i

match

Scala match: Scala Pattern matching expression.

x match {
  case 1 => "one"
  case _ => "other"
}

case

Scala case: Defines a case in a Scala match expression or a Scala case class.

case class Person(name: String, age: Int)

class

Scala class: Defines a class.

class MyClass

object

Scala object: Defines a singleton object.

object MyObject

trait

extends

Scala extends: Indicates that a Scala class inherits from another class or Scala trait.

class MyClass extends MyTrait

with

Scala with: Used to Scala mix in Scala traits.

class MyClass extends MyTrait with AnotherTrait

new

Scala new: Creates a new Scala instance of a class.

val obj = new MyClass

import

Scala import: Imports Scala classes, Scala objects, or Scala members.

import scala.collection.mutable.ArrayBuffer

package

Declares a package.

package com.example

final

Marks a member or class as not extendable.

final class MyFinalClass

private

Restricts access to the enclosing class or package.

private class MyClass

protected

Restricts access to subclasses and the enclosing package.

protected def myMethod = {}

override

Indicates that a member overrides a base class member.

override def toString = "MyClass"

try

Starts a block for exception handling.

try {
  riskyMethod()
} catch {
  case e: Exception => println(e)
}

catch

Catches exceptions thrown in the try block.

catch {
  case e: Exception => println(e)
}

finally

Defines a block that executes after try/catch, regardless of exceptions.

finally {
  cleanUp()
}

lazy

Lazily initializes a value the first time it is accessed.

lazy val myLazyVal = computeIntensiveOperation()

implicit

Marks a parameter or definition as implicit.

implicit val myImplicitVal: Int = 5

null

Represents a null reference.

val str: String = null

true, false

Boolean literals.

val myTrue: Boolean = true
val myFalse: Boolean = false

object

Defines a singleton object, which is a class with exactly one instance.

object Singleton

type

Defines a type alias.

type StringList = List[String]

this

Refers to the current object.

class MyClass {
  def printThis: Unit = println(this)
}

null

Represents the absence of a value for reference types.

val str: String = null

super

Refers to the superclass version of a method or field.

override def toString = super.toString + " with extra"

sealed

Restricts subclassing to the same file (used with traits and classes).

sealed trait MySealedTrait

This glossary covers foundational concepts and reserved words in Scala, designed to provide a quick reference for both beginners and seasoned programmers. Scala's syntax and rich library support enable developers to write concise and expressive code, leveraging both object-oriented and functional programming paradigms.

This concise glossary, formatted for MediaWiki, covers essential Scala concepts and keywords with examples, providing a valuable resource for learning or reference.

Snippet from Wikipedia: Scala (programming language)

Scala ( SKAH-lah) is a strong 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.

Research More

Scala on the Cloud

Scala on Containers

Scala Courses

Fair Use Source

Scala Vocabulary List (Sorted by Popularity)

Scala Programming Language, Scala Compiler, Scala sbt (Scala Build Tool), Scala IntelliJ Integration, Scala ScalaTest, Scala Akka Actor Model, Scala Functional Programming Style, Scala Case Class, Scala Companion Object, Scala Object Keyword, Scala Class Keyword, Scala Trait Keyword, Scala Val Keyword, Scala Var Keyword, Scala Def Keyword, Scala Lazy Val, Scala Immutable Collections, Scala Mutable Collections, Scala Option Type, Scala Some Type, Scala None Type, Scala Map Collection, Scala Seq Collection, Scala List Collection, Scala Vector Collection, Scala Set Collection, Scala Tuple Type, Scala Unit Type, Scala Any Type, Scala AnyRef Type, Scala AnyVal Type, Scala Null Type, Scala Nothing Type, Scala Singleton Object, Scala Type Inference, Scala Pattern Matching, Scala For-Comprehension, Scala Lambda Expression, Scala Higher-Order Function, Scala Partial Function, Scala Currying, Scala Tail Recursion, Scala Recursion Optimization, Scala Immutable Map, Scala Immutable List, Scala Immutable Set, Scala Immutable Vector, Scala Immutable Seq, Scala Iterator Type, Scala Iterable Trait, Scala IndexedSeq Trait, Scala Range Type, Scala Stream (Lazy List) Type, Scala LazyList Type, Scala Fold Operation, Scala Reduce Operation, Scala Map Operation, Scala Filter Operation, Scala FlatMap Operation, Scala Foreach Operation, Scala Sort Operations, Scala Zip Operation, Scala GroupBy Operation, Scala Drop Operation, Scala Take Operation, Scala Slice Operation, Scala Partition Operation, Scala Span Operation, Scala SplitAt Operation, Scala Head Method, Scala Tail Method, Scala Init Method, Scala Last Method, Scala DropWhile Method, Scala TakeWhile Method, Scala FoldLeft Method, Scala FoldRight Method, Scala ReduceLeft Method, Scala ReduceRight Method, Scala Scan Operation, Scala ScanLeft Operation, Scala ScanRight Operation, Scala Indexed Access, Scala String Interpolation, Scala Raw String Interpolation, Scala S String Interpolation, Scala F String Interpolation, Scala Interpolated Strings, Scala StringOps, Scala RichInt, Scala RichDouble, Scala RichChar, Scala RichBoolean, Scala RichLong, Scala RichFloat, Scala RichByte, Scala RichShort, Scala Implicit Conversions, Scala Implicit Parameters, Scala Implicit Class, Scala Implicit Object, Scala Implicit Value, Scala Type Class Pattern, Scala Evidence Parameter, Scala Context Bound, Scala View Bound (deprecated), Scala Triple Quotes (Scala 3), Scala Extension Methods, Scala Given Instances, Scala Using Clauses, Scala Given Keyword (Scala 3), Scala Export Keyword (Scala 3), Scala Opaque Type (Scala 3), Scala Intersection Types (Scala 3), Scala Union Types (Scala 3), Scala Dependent Types, Scala Path-Dependent Types, Scala Self Type Annotation, Scala Structural Types, Scala Singleton Types, Scala Type Aliases, Scala Parameterized Types, Scala Type Parameters, Scala Type Bounds, Scala Upper Bound, Scala Lower Bound, Scala Context Function Types, Scala Polymorphic Function Types (Scala 3), Scala Parametric Polymorphism, Scala Ad-Hoc Polymorphism, Scala Subtyping, Scala Variance, Scala Covariance, Scala Contravariance, Scala Invariance, Scala Abstract Type Members, Scala Abstract Class, Scala Concrete Class, Scala Final Keyword, Scala Sealed Keyword, Scala Lazy Keyword, Scala Override Keyword, Scala Transparent Trait (Scala 3), Scala Transparent Inline (Scala 3), Scala Inline Method (Scala 3), Scala Macro (Scala 2.x) (deprecated), Scala Macro Paradise (deprecated), Scala TASTy Reflection (Scala 3), Scala Metaprogramming, Scala Quoted Expressions (Scala 3), Scala Quoted Type (Scala 3), Scala Inline Given (Scala 3), Scala By-Name Parameters, Scala By-Name Types, Scala Call-by-Name, Scala Call-by-Value, Scala Default Parameters, Scala Named Parameters, Scala Varargs Parameter, Scala Class Parameter, Scala Constructor Parameter, Scala Primary Constructor, Scala Auxiliary Constructor, Scala This Constructor, Scala Super Constructor Call, Scala Self Parameter in Traits, Scala Mixin Composition, Scala Linearization, Scala Early Initializers (deprecated), Scala Lazy Initialization, Scala Reference Equality (eq, ne), Scala Structural Equality (==, !=), Scala Universal Equality, Scala Type Equality Operator (===) (scalaz or cats), Scala Ordering, Scala Ordering Implicit, Scala Ordering.by Function, Scala Equiv Typeclass, Scala Numeric Typeclass, Scala Fractional Typeclass, Scala Integral Typeclass, Scala Ordering for Int, Scala Ordering for String, Scala Ordering for Custom Types, Scala PartialOrder Typeclass (cats), Scala Monoid Typeclass (cats), Scala Semigroup Typeclass (cats), Scala Functor Typeclass (cats), Scala Monad Typeclass (cats), Scala MonadError Typeclass (cats), Scala Applicative Typeclass (cats), Scala Foldable Typeclass (cats), Scala Traverse Typeclass (cats), Scala Show Typeclass (cats), Scala Eq Typeclass (cats), Scala Contravariant Functor (cats), Scala Invariant Functor (cats), Scala Kleisli (cats), Scala Either Type, Scala Left Projection (deprecated), Scala Right Projection (deprecated), Scala Try Type, Scala Success Type, Scala Failure Type, Scala Future Type (scala.concurrent), Scala ExecutionContext, Scala Promise Type (scala.concurrent), Scala Await Object (scala.concurrent), Scala blocking Call (scala.concurrent), Scala Duration Type (scala.concurrent), Scala FiniteDuration, Scala PartialFunction Type, Scala PartialFunction.applyOrElse, Scala PartialFunction.lift, Scala Collect Method on Collections, Scala Partition Method on Collections, Scala Span Method on Collections, Scala Unzip Method, Scala Concat Method, Scala Intersect Method, Scala Diff Method, Scala Union Method, Scala Distinct Method, Scala Patch Method, Scala Updated Method, Scala UpdatedWith Method (Scala 2.13+), Scala fold Methods on Maps, Scala transform Methods on Maps, Scala withDefault Method on Maps, Scala SortedSet, Scala SortedMap, Scala TreeSet, Scala TreeMap, Scala Immutable Queue, Scala Immutable Stack, Scala Immutable LazyList, Scala View (scala.collection.View), Scala Iterator to Stream Conversion (deprecated), Scala LinearSeq, Scala IndexedSeq, Scala LinearSeqOps, Scala IndexedSeqOps, Scala Strict Optimizations, Scala Lazy Evaluations, Scala Call-by-Name Arguments, Scala Streams (2.12) deprecated, replaced by LazyList, Scala Regex Class (scala.util.matching), Scala Regex Groups, Scala Regex findAllIn, Scala Regex replaceAllIn, Scala Regex replaceFirstIn, Scala Regex findFirstIn, Scala BigInt Type, Scala BigDecimal Type, Scala Numeric Literal Suffix, Scala Triple Quotes for multiline strings, Scala StringOps Methods (map, flatMap, etc.), Scala CharOps, Scala ArrayOps, Scala JavaConverters (deprecated in Scala 2.13), Scala Java Collection Converters (Scala 2.13+), Scala toScala methods, Scala toJava methods, Scala reflection API (scala.reflect), Scala Symbol Type (deprecated), Scala Symbol Literal 'x (deprecated), Scala Enumeration Type, Scala Enumerations are discouraged, Scala scala.util.Random, Scala scala.util.Try, Scala scala.util.Success, Scala scala.util.Failure, Scala scala.util.Either, Scala scala.util.Left, Scala scala.util.Right, Scala scala.util.Using, Scala scala.util.Using.Manager, Scala scala.util.Sorting, Scala scala.util.Properties, Scala scala.sys Process, Scala scala.sys.env Map, Scala scala.sys.props Map, Scala scala.collection.mutable, Scala mutable ArrayBuffer, Scala mutable ListBuffer, Scala mutable Map, Scala mutable Set, Scala mutable HashMap, Scala mutable HashSet, Scala mutable LinkedHashMap, Scala mutable LinkedHashSet, Scala mutable Buffer, Scala mutable Stack, Scala mutable Queue, Scala mutable PriorityQueue, Scala mutable SynchronizedQueue (deprecated), Scala mutable WeakhashMap (Java interop), Scala mutable ArrayStack (deprecated), Scala mutable StringBuilder, Scala mutable StringOps, Scala mutable UnrolledBuffer (deprecated), Scala mutable TreeSet (deprecated, Scala mutable TreeMap (deprecated, Scala concurrent.Future, Scala concurrent.Promise, Scala concurrent.BlockingContext, Scala concurrent.ExecutionContext.Implicits, Scala concurrent.duration package, Scala concurrent.duration.SECONDS, Scala concurrent.duration.MILLISECONDS, Scala concurrent.duration FiniteDuration, Scala concurrent.ExecutionContext global, Scala concurrent.Lock, Scala concurrent.AtomicReference (Java Interop), Scala Standard Library Index, Scala Predef Object, Scala Predef., Scala Predef.assume Function, Scala Predef.require Function, Scala Predef.assert Function, Scala Predef.implicitly Function, Scala Predef.identity Function, Scala Predef.classOf[T], Scala Predef.printf Function, Scala Predef.readLine Function, Scala System.err, Scala System.out, Scala System.in, Scala scala.Console, Scala Console.println, Scala Console.readLine, Scala Console.withIn, Scala Console.withOut, Scala Console.withErr, Scala Console.setOut, Scala Console.setIn, Scala Console.setErr, Scala math Package, Scala math.Ordering, Scala math.BigInt, Scala math.BigDecimal, Scala math.sqrt, Scala math.pow, Scala math.log, Scala math.exp, Scala math.sin, Scala math.cos, Scala math.tan, Scala math.abs, Scala math.max, Scala math.min, Scala math.ceil, Scala math.floor, Scala math.round, Scala math.random, Scala reflect Manifest, Scala reflect ClassTag, Scala reflect TypeTag, Scala reflect api, Scala reflect runtime, Scala reflect macros (2.x) (deprecated), Scala reflect ClassManifest (deprecated), Scala annotation.tailrec, Scala annotation.unchecked.uncheckedVariance, Scala annotation.varargs, Scala annotation.bridge (internal), Scala annotation.elidable, Scala annotation.strictfp, Scala annotation.switch, Scala annotation.experimental (Scala 3), Scala annotation.nowarn, Scala annotation.alpha (Scala 3), Scala Duration Type (scala.concurrent.duration), Scala FiniteDuration methods, Scala ExecutionContext from Executors, Scala Future.firstCompletedOf, Scala Future.firstCompletedOf on Seq, Scala Future.foldLeft, Scala Future.foldRight, Scala Future.traverse, Scala Future.sequence, Scala Future.onComplete, Scala Future.failed, Scala Future.successful, Scala Future.fromTry, Scala Future.reduceLeft, Scala Future.zip, Scala Future.fallbackTo, Scala parallel collections (deprecated in stdlib), Scala Parallel Collections on separate module, Scala cats Integration (not standard, but widely used), Scala scalaz Integration (older), Scala ZIO Library Integration, Scala Monix Integration, Scala FS2 Integration, Scala MUnit Testing, Scala ScalaCheck Testing, Scala ScalaMock Testing, Scala Scalatest.FunSuite, Scala Scalatest.FlatSpec (deprecated), Scala Scalatest.funspec.AnyFunSpec, Scala Scalatest.funsuite.AnyFunSuite, Scala Scalatest.wordspec.AnyWordSpec, Scala Scalatest.matchers.should.Matchers, Scala Scalatest.matchers.must.Matchers, Scala Scalatest.prop.PropertyChecks (deprecated), Scala Scalatestplus integration, Scala JUnit Integration, Scala Mockito Integration, Scala Specs2 Integration, Scala ScalaCheck Prop, Scala ScalaCheck Gen, Scala ScalaCheck Arbitrary, Scala ScalaCheck forAll, Scala ScalaCheck Test Parameters, Scala ScalaJS Integration, Scala ScalaJS bundler, Scala ScalaJS IR, Scala ScalaJS Linking, Scala ScalaJS DOM APIs, Scala Scala Native Integration, Scala Scala Native nativelib, Scala Scala Native linking, Scala Scalafmt Formatting, Scala Scalafix Refactoring, Scala Semanticdb Integration, Scala Metals LSP, Scala Scalac Options, Scala -X Options (scalac), Scala -Y Options (scalac), Scala -language Options (scalac), Scala Cross Compilation, Scala Cross Versioning with sbt, Scala sbt Keys, Scala sbt Tasks, Scala sbt Settings, Scala sbt Plugins, Scala sbt dependency Management, Scala sbt TestFramework, Scala sbt Shell, Scala sbt Assembly Plugin, Scala sbt Native Packager, Scala sbt Scripted Tests, Scala sbt multi-project builds, Scala sbt crossProject, Scala sbt libraryDependencies, Scala sbt resolvers, Scala sbt publish to Maven, Scala Modules (like scala-xml), Scala Modules (like scala-parallel-collections), Scala Modules (like scala-collection-compat), Scala Modules (like scala-java8-compat), Scala Modules (like scala-async), Scala Modules (like scala-parser-combinators), Scala Modules (like scala-swing) (deprecated), Scala Modules (like scala-collection-contrib), Scala Dotty (Scala 3 Compiler), Scala Dotty Features (Union Types, Intersection Types), Scala Dotty enums, Scala Dotty given/using keywords, Scala Dotty extension methods syntax, Scala Dotty opaque type aliases, Scala Dotty inline macros, Scala Dotty Match Types, Scala Dotty Typelevel Programming, Scala Dotty scala.compiletime package, Scala Dotty Errors and Warnings enhancements, Scala Dotty TASTy format, Scala Dotty Toolbox (experimental), Scala Dotty From Tasty Reflection API, Scala Dotty Macros (Scala 3) experimental, Scala Dotty Shorthand lambda syntax, Scala Dotty Control-Structures.

Scala: Scala Fundamentals, Scala 3, Scala 2, SBT-Maven-Gradle, JVM, Scala Keywords, Scala Built-In Data Types, Scala Data Structures - Scala Algorithms, Scala Syntax, Scala OOP - Scala Design Patterns, Scala Installation (Scala 3 on Windows, Scala 3 on Linux, Scala 3 on macOS), Scala Containerization, Scala Configuration, Scala IDEs (JetBrains IntelliJ), Scala Linter, Scala on JVM, Scala Development Tools, Scala Compiler, Scala Transpiler (Scala.js, Scala Native), Scala REPL, Scala Testing (ScalaTest, ScalaCheck, JUnit, Hamcrest, Mockito, Selenium, TestNG), Scala Data Science - Scala DataOps, Scala Machine Learning - Scala MLOps, Scala Deep Learning, Functional Scala, Scala Concurrency - Scala Parallel Programming, Scala Libraries (Akka Toolkit), Scala Frameworks (Play Framework, Scalatra), Scala History, Scala Bibliography, Manning Scala Series, Scala Courses, Scala Glossary - Glossaire de Scala - French, Scala Topics, Scala Research, Scala GitHub, Written in Scala (Apache Spark, Apache Kafka, Apache Helix), Scala Popularity, Scala Awesome. (navbar_scala - see also navbar_scala_standard_library, navbar_scala_libraries, navbar_scala_reserved_words, navbar_scala_functional, navbar_scala_concurrency, navbar_jvm, navbar_java)

Reserved Keywords: (Also called: Language Keywords, Reserved Keyword, Reserved Word, Keywords, Reserved Identifier, Reserved Identifiers) Ada Keywords, ALGOL 68 Keywords, Angular Keywords, Android Keywords, Apple iOS Keywords, ARM Assembly Keywords, Assembly Keywords, AWK Keywords, Bash Keywords, BASIC Keywords, C Keywords (https://en.cppreference.com/w/c/keyword), C Sharp Keywords | Keywords, dot NET Keywords | NET Keywords, C plus plus Keywords | C++ Keywords (https://en.cppreference.com/w/cpp/keyword), Clojure Keywords, COBOL Keywords, Dart Keywords, Delphi Keywords, Django Keywords, Elixir Keywords, Erlang Keywords, F Sharp Keywords, Fortran Keywords, Flask Keywords, Golang Keywords, Groovy Keywords, Haskell Keywords, Jakarta EE Keywords, Java Keywords, JavaScript Keywords, JCL Keywords, Julia Keywords, Kotlin Keywords, Lisp Keywords (Common Lisp Keywords), Lua Keywords, MATHLAB Keywords, Objective-C Keywords, OCaml‎ Keywords, Pascal Keywords, Perl Keywords, PHP Keywords, PL/I Keywords, PowerShell Keywords, Python Keywords, Quarkus Keywords, R Language Keywords, React.js Keywords, Rexx Keywords, RPG Keywords, Ruby Keywords, Rust Keywords, Scala Keywords, Spring Keywords, SQL Keywords, Swift Keywords, Transact-SQL Keywords, TypeScript Keywords, Visual Basic Keywords, Vue.js Keywords, X86 Assembly Keywords, X86-64 Assembly Keywords. (navbar_reserved_keywords - see also navbar_cpp_keywords)


Cloud Monk is Retired ( for now). Buddha with you. © 2025 and Beginningless Time - Present Moment - Three Times: The Buddhas or Fair Use. Disclaimers

SYI LU SENG E MU CHYWE YE. NAN. WEI LA YE. WEI LA YE. SA WA HE.


scala_reserved_words_-_scala_keywords.txt · Last modified: 2025/02/01 06:29 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki