Buy Flutter100 Ebook on

Kotlin Cookbook

Kotlin is becoming more and more popular so here is your chance to learn Kotlin programming language from the best cookbook.

Kotlin Cookbook

Basics

"Hello, World" program

fun main(args: Array) 
{
	printIn(" Hello, Codepur")
}

Declaring function

fun sum(a: Int, b: Int): Int {
	return a + b
}