Data types in kotlin
package com.example.my_kotlin_practice fun main (args: Array<String>) { // Kotlin built in data type can be categorized as follows: // // Number // Character // String // Boolean // Array var a : Int = 10000 var d : Double = 100.00 var f : Float = 100.00f var l : Long = 1000000004 var s : Short = 10 var b : Byte = 1 println ( "Int value is : $ a " ) println ( "Double value is : $ d " ) println ( "Float value is : $ f " ) println ( "Long value is : $ l " ) println ( "Short value is : $ s " ) println ( "Byte value is : $ b " ) // Kotlin character data type is used to store a single character, and they are represented by the type Char keyword. // A Char value must be surrounded by single quotes, like 'A' or '1'. var letter : Char = 'A' println ( "Character value is : $ letter " ) // Kotlin supports a number...