Skip to content

An introduction to the Kotlin programming language for practical purposes.

License

Notifications You must be signed in to change notification settings

Google-Developers-Sohag/Kotlin-At-A-Glance

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kotlin-At-A-Glance

Kotlin is an open source high level programming language based primarily on java, developed and maintained by JetBrains and runs essentially on the JVM.

Kotlin now runs on multiple platforms including web and iOS through platform specific modules, designated by Kotlin-Multi-Platform.

Table of contents:

  • Basic language components

    • Basic Syntax.
    • Language basics.
    • Data types.
    • Lexical elements.
    • Operations (arithmetic, logical and bitwise).
    • Statements (conditional statements "if", "if-else", "nested-if-elses" and "ternary operations").
  • Object-Oriented-Programming

    • Classes and objects.
    • Open and Closed classes.
    • Inheritance and abstraction.
    • Polymorphism.
    • Overloading and overriding.
    • Tricks of trade.
  • For more, refer to Kotlin-docs.