Kotlin Notes
Important Notes & Links Read - https://www.programiz.com/kotlin-programming/hello-world Kotlin is a strongly statically typed language. Just like C++ and Java , Kotlin also has a main( ) function. There are many useful 'Keyword operators' in Kotlin like "is" , "as", "in" , "when" etc. The Top-most class in Kotlin (just like Object class in java ) is "Any" class , every class inherits from it. main() vs main(args : Array<String>) In later versions of kotlin it is not necessary to pass the string array as the parameter to the main function,but mostly it is passed to make the code run on all versions of kotlin. fun main () { print ( "Hello world !" ) } fun main ( args : Array < String >) { print ( "Hello world !" ) } ------------------------------------------------------------------------------------------------------------------------- Hello World Program Test.kt fun main ( args : Arr...