Scala provides nine predefined basic or scalar type, they are:
Boolean: true, false
true
false
Int: 1
1
String: "hello"
"hello"
Unit: ()
()
Char: c
c
Long: 100L
100L
Short: 100: Short
100: Short
Float: 31.4f
31.4f
Double: 3.14d
3.14d
Last updated 5 years ago