I\'m learning Kotlin, and in my project I have something like the following
Utils.kt:
var weightInKilos = 100.0 //should multiply the above var fun doSo
Use the package name as the identifier. If the enclosing package for Utils.kt file is com.example, you would use com.example.weightInKilos = weightInKilos * multiplier.
Utils.kt
com.example
com.example.weightInKilos = weightInKilos * multiplier
Thank you Android Studio autocomplete.