INTRODUCTION TO KOTLIN CHEAT SHEET
AryantKumar

AryantKumar @aryantkumar

About: Developing an AI tool to streamline Android and iOS development. It leverages machine learning and Siri/Gemini to offer real-time debugging, intelligent code suggestions and performance analytics.

Location:
Kolkata
Joined:
Nov 13, 2024

INTRODUCTION TO KOTLIN CHEAT SHEET

Publish Date: Jan 22
0 0

main()

fun main()
println("Hello Developers!")
// Code goes here
}

Print Statement

println("Nameste, Developers!")
print("Let me ")
print("guide you through the Kotlin Basic Cheat Sheet")

/*
Print:
Nameste, Developers!
Let me guide you through Kotlin Basic Cheat Sheet

Notes

// this is a single line comment

/*
this
note
for
many
*/

Execution Order

fun main() {
println("I will be printed First")
println("I will be printed Second")
println("I will be printed Third")
}

Next will be looking on cheat Sheet for Kotlin Data types and variables

Comments 0 total

    Add comment