2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-07 09:20:22 +00:00
cheat.sheets/sheets/scala/Variables
2017-05-08 20:27:00 +00:00

12 lines
101 B
Plaintext

// variables
var x = 5
// constant
// GOOD
val x = 5
// BAD
x=6
// explicit type
var x: Double = 5