Kotlin 101
Documentation
https://github.com/lcaohoanq/kotlin
https://kotlinlang.org/docs/kotlin-reference.pdf
Variables and data types
fun getDataType() {
println("Hello world")
var x = 5 //this is a variable
var m: Int = 120
println("x is :...
lcaohoanq.hashnode.dev24 min read