Skip to content

moozunch/LearnKotlin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Kotlin

Kotlin is an open-source, statically-typed programming language that supports both object-oriented and functional programming. Kotlin provides similar syntax and concepts from other languages, including C#, Java, and Scala, among many others. Kotlin does not aim to be unique—instead, it draws inspiration from decades of language development. It exists in variants that target the JVM (Kotlin/JVM), JavaScript (Kotlin/JS), and native code (Kotlin/Native).

Kotlin is a great fit for developing server-side applications. It allows you to write concise and expressive code while maintaining full compatibility with existing Java-based technology stacks, all with a smooth learning curve: Expressiveness, Scalability, Interoperability, Migration, and Tooling
For more Information check Kotlin Official Website

Tools and Source

  • Kotlin is a language developed by JetBrains and to use it you need to use one of JetBrains IDE in which is IntelliJ or Android Studio.
  • In this opportunity aswell I'm using IntelliJ as I only learn basic Kotlin but I also using Android Studio for my application with Kotlin as backend programing language of the application.
  • Study References W3School - Kotlin

Kotlin Overview

fun main() {
    val name = "stranger"        // Declare your first variable
    println("Hi, $name!")        // ...and use it!
    print("Current count:")
    for (i in 0..10) {           // Loop over a range from 0 to 10
        print(" $i")
    }
}

For more -> See Source Directory


About

ann learning Kotlin with IntelIJ

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages