Kotlin Cookbook
Kotlin is becoming more and more popular so here is your chance to learn Kotlin programming language from the best cookbook.
Basics
"Hello, World" program
fun main(args: Array)
{
printIn(" Hello, Codepur")
}
Declaring function
fun sum(a: Int, b: Int): Int {
return a + b
}