Kotlin for Beginners
Kotlin Basics Introduction to Kotlin Install Kotlin Installing Kotlin in command line mode Install kotlin using brew command Hello World program Setting up Kotlin in Eclipse Variables Data types Data types nullable types Numbers Characters Convert character to Int Booleans Strings String template expressions Arrays Arrays Define Array of nulls Define array using factory function Print array elements Operators, Control flow statements Bit wise operators Logical Operators === vs == Control flow statements if statement if-else statement if-else if-else Why there is no ternary operator in kotlin? when expression Using when as if-else if ladder Use When as expression for loop while, do-while loops break statement continue statement Working wit