Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/halilozel1903/kotlintutorials

It's a project that contains lessons & examples about Kotlin Programming language. 🏜️
https://github.com/halilozel1903/kotlintutorials

android kotlin kotlin-android kotlin-android-tutorial kotlin-coroutines kotlin-example kotlin-examples kotlin-extensions kotlin-lang kotlin-language kotlin-language-features kotlin-learning kotlin-lib kotlin-library kotlin-multiplatform kotlin-native kotlin-nedir kotlin-programming-language kotlin-tutorial tutorial

Last synced: 3 days ago
JSON representation

It's a project that contains lessons & examples about Kotlin Programming language. 🏜️

Awesome Lists containing this project

README

        

# Kotlin Tutorials πŸ‘¨πŸ»β€πŸ’»

![Screenshot](kotlin2023.jpeg)

# What is Kotlin❓

`Kotlin` is a cross-platform, statically typed, general-purpose programming language with type inference. `Kotlin` is designed to interoperate fully with `Java` and the `JVM` version of Kotlin's standard library depends on the `Java` Class Library, but type inference allows its syntax to be more concise.

You can access the article from the link below: πŸ‘‡πŸΌ

https://medium.com/@halilozel1903/kotlin-nedir-43e312d2dca6

## The goal of the project 🎯
Starting from the most basic topics about Kotlin, learning advanced topics by myself and creating an interactive project by sharing the information I have learned with you.

## Project Content πŸ› 
It's a project that contains various information and examples about the basics of programming with Kotlin.

## Project Subjects πŸ”–
- [Hello World](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/HelloWorld.kt)
- [Basic Types](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/BasicTypes.kt)
- [Arithmetic Operators](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/ArithmeticOperators.kt)
- [Assignment Operators](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/AssignmentOperators.kt)
- [Comparison-Equality Operators](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Comparison-EqualityOperators.kt)
- [Increment-Decrement Operators](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Increment-DecrementOperators.kt)
- [Logical Operators](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/LogicalOperators.kt)
- [In Operator](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/inOperator.kt)
- [Input-Output](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Input-Output.kt)
- [Type Conversion](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/TypeConversion.kt)
- [If Expression](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/ifExpression.kt)
- [If..Else..If Expression](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/if..else..ifExpression.kt)
- [Nested If Expression](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/NestedifExpression.kt)
- [When Expression](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/When.kt)
- [While Loop](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/WhileLoop.kt)
- [Do...While Loop](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/do...whileLoop.kt)
- [For Loop](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/ForLoop.kt)
- [Arrays](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Arrays.kt)
- [Range](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Range.kt)
- [Null Safety](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/NullSafety.kt)
- [Break](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Break.kt)
- [Continue](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Continue.kt)
- [Functions](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Functions.kt)
- [Function Overloading](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/MethodOverloading.kt)
- [Multiform Function](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/MultiformFunction.kt)
- [Top Level Method](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/TopLevelMethod.kt)
- [Recursive Function](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/RecursiveFunction.kt)
- [Infix Function](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/InfixFunction.kt)
- [Class and Objects](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Class-Objects.kt)
- [Constructor](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Constructor.kt)
- [Getters & Setters](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Getters-Setters.kt)
- [Operator Overloading](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/OperatorOverloading.kt)
- [Inheritance](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/Inheritance.kt)
- [Visibility Modifiers](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/VisibilityModifiers.kt)
- [Abstract Class](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/AbstractClass.kt)
- [Interfaces](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/InterfaceSample.kt)
- [Nested Class](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/NestedClass.kt)
- [Inner Class](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/InnerClass.kt)
- [Data Class](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/DataClass.kt)
- [Sealed Classes](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/SealedClass.kt)
- [Companion Objects](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/CompanionObject.kt)
- [Extension Function](https://github.com/halilozel1903/KotlinTutorials/blob/master/src/main/kotlin/ExtensionFunction.kt)

## Resources πŸ“š
1. https://kotlinlang.org/docs/kotlin-docs.pdf
2. https://www.programiz.com/kotlin-programming
3. https://www.tutorialspoint.com/kotlin/
4. https://www.geeksforgeeks.org/kotlin-programming-language/

## Support πŸ’Έ
If this project help πŸ’ you can buy me a cup of coffee. β˜•

[!["Buy Me A Coffee"](https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png)](https://www.buymeacoffee.com/halilozel1903)

## License ℹ️
```
MIT License

Copyright (c) 2023 Halil OZEL

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```