[ Kotlin ] val, var difference / data types (int, floating numbers, strings, character, bool)
> before start on Mac, we can run our own app with 'ctrl + shift + r' Kotlin provides 'type inference', which let us to code without using specific data type. We can not define variables using ' _ ' 1. how to make function using function functionname () {} package com.example.udemy2_kotlin fun main(){ } 2. difference between val and var val : can not be reassigned, no changes are allowed. var : ..
2022.05.11