- cross-posted to:
- [email protected]
- [email protected]
- cross-posted to:
- [email protected]
- [email protected]
Made with KolourPaint and screenshots from Kate (with the GitHub theme).
Made with KolourPaint and screenshots from Kate (with the GitHub theme).
I see your TypeScript and raise you kotlin:
var a: StringWhat’s up with that syntax? Why the use of var here?
Kotlin knows mutable and immutable variables.
varindicate mutables andvalwould indicate immutables (comparable with thefinalmodifier in java andconstin JavaScript/TypeScript).So a var can start as a string and later be an integer?
I don’t know Kotlin but in other languages “(im)mutable” refers to the value, not the type.
No, the type is strict and fixed.