Here i will share Kotlin progress about technical things.
So for windows i was doing it, here is the environment path variable setup: https://www.youtube.com/watch?v=dDcdhN9NQfc
Kotlin is a JVM language – So Kotlin can run inside JVM, so we need java to have this bytecode for Kotlin
this tutorial i am following.
Documentation: https://kotlinlang.org/docs/home.html
https://kotlinlang.org/docs/basic-syntax.html#variables
fun main() {
// val name = "Scaler"
var name = "Scaler"
name = "Scaler Academy"
name = "Learning "
println(name)
}