kotlin-programming

There are 13 repositories under kotlin-programming topic.

  • ArtemZarubin/kotlin-lessons

    This repository serves as a dedicated space for documenting and sharing my journey of learning the Kotlin programming language. It aims to provide a comprehensive collection of resources, examples, and projects to support my learning process and showcase my progress.

    Language:Kotlin30201
  • PacktPublishing/Kotlin-Design-Patterns-and-Best-Practices_Third-Edition

    Kotlin Design Patterns and Best Practices_Third Edition_ Published by Packt

    Language:Kotlin232014
  • halilozel1903/LearnKotlinProgramming

    Let's Learn Kotlin Programming 💜 🧡

    Language:Kotlin7301
  • Amit-Ashok-Swain/World-Of-Kotlin

    Welcome to the "World Of Kotlin - (The Kotlin Programming Course)" This course is designed to help you learn and master the fundamentals of the Kotlin programming language. Whether you're a beginner or an experienced developer, this course will cover essential topics and provide opportunities for hands-on learning.

    Language:Kotlin4102
  • VinayByte/leetcode-solution-kotlin

    LeetCode solutions in Kotlin

    Language:Kotlin2
  • efebadir/Crunchyroll-Tasarim-Calismasi

    Bu proje, popüler anime ve manga platformu Crunchyroll'un 'My List' sayfasının tasarımını model alır. Kullanıcıların favori içeriklerini kaydedebilecekleri ve daha sonra kolayca erişebilecekleri özel bir sayfa olan 'My List'in kullanıcı arayüzü tasarımını içerir. Projede, modern ve minimalist bir yaklaşımla hazırlanmıştır.

    Language:Kotlin0100
  • lucasgearhead/Kotlin-Finance-App

    This repository contains the source code of a financial application developed in Kotlin using Android Studio. The application allows for expense recording, income tracking, category management, and financial balance calculation.

    Language:Kotlin
  • VaibhavMojidra/Kotlin---Demo-Continue-Keyword

    The Kotlin continue statement breaks the loop iteration in between (skips the part next to the continue statement till end of the loop) and continues with the next iteration in the loop.

    Language:Kotlin10
  • VaibhavMojidra/Kotlin---Demo-Extension-Functions

    In Kotlin, extension functions allow developers to add new functionality to existing classes or types without modifying the original source code.

    Language:Kotlin10
  • VaibhavMojidra/Kotlin---Demo-Ranges

    In Kotlin, a range is a sequence of values that can be represented using the range operator ... Ranges are used to represent a continuous sequence of values, such as a range of numbers or characters.

    Language:Kotlin10
  • VaibhavMojidra/Kotlin---Demo-Secondary-Constructor

    In Kotlin, a secondary constructor is a way to define additional initialization logic for a class. Unlike the primary constructor, which is defined in the class header, a secondary constructor is defined inside the body of the class.

    Language:Kotlin10
  • VaibhavMojidra/Kotlin---Demo-When

    Kotlin when expression is similar to the switch statement in C, C++ and Java. Kotlin when can be used either as an expression or as a statement, simply like a switch statement in Java. If it is used as an expression, the value of the first matching branch becomes the value of the overall expression.

    Language:Kotlin10