mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-07 09:20:22 +00:00
12 lines
101 B
Plaintext
12 lines
101 B
Plaintext
// variables
|
|
var x = 5
|
|
|
|
// constant
|
|
// GOOD
|
|
val x = 5
|
|
// BAD
|
|
x=6
|
|
|
|
// explicit type
|
|
var x: Double = 5
|