string and primitive types: ``` const val int = 1 ...
# announcements
h
string and primitive types:
Copy code
const val int = 1
const val long = 1L
const val float = 1F
const val double = 1.2
const val string = "foo"
const val bool = false