Basic Type

Scala provides nine predefined basic or scalar type, they are:

  • Boolean: true, false

  • Int: 1

  • String: "hello"

  • Unit: ()

  • Char: c

  • Long: 100L

  • Short: 100: Short

  • Float: 31.4f

  • Double: 3.14d

Last updated

Was this helpful?