|
1 | 1 | ## Relevant articles:
|
2 | 2 |
|
3 |
| -- [Introduction to the Kotlin Language](http://www.baeldung.com/kotlin) |
4 |
| -- [Guide to the “when{}” Block in Kotlin](http://www.baeldung.com/kotlin-when) |
5 |
| -- [Comprehensive Guide to Null Safety in Kotlin](http://www.baeldung.com/kotlin-null-safety) |
6 |
| -- [Kotlin Java Interoperability](http://www.baeldung.com/kotlin-java-interoperability) |
7 |
| -- [Difference Between “==” and “===” operators in Kotlin](http://www.baeldung.com/kotlin-equality-operators) |
8 |
| -- [Generics in Kotlin](http://www.baeldung.com/kotlin-generics) |
9 |
| -- [Introduction to Kotlin Coroutines](http://www.baeldung.com/kotlin-coroutines) |
10 |
| -- [Destructuring Declarations in Kotlin](http://www.baeldung.com/kotlin-destructuring-declarations) |
11 |
| -- [Lazy Initialization in Kotlin](http://www.baeldung.com/kotlin-lazy-initialization) |
12 |
| -- [Overview of Kotlin Collections API](http://www.baeldung.com/kotlin-collections-api) |
13 |
| -- [Converting a List to Map in Kotlin](http://www.baeldung.com/kotlin-list-to-map) |
14 |
| -- [Data Classes in Kotlin](http://www.baeldung.com/kotlin-data-classes) |
15 |
| -- [Delegated Properties in Kotlin](http://www.baeldung.com/kotlin-delegated-properties) |
16 |
| -- [Sealed Classes in Kotlin](http://www.baeldung.com/kotlin-sealed-classes) |
17 |
| -- [JUnit 5 for Kotlin Developers](http://www.baeldung.com/junit-5-kotlin) |
18 |
| -- [Extension Methods in Kotlin](http://www.baeldung.com/kotlin-extension-methods) |
19 |
| -- [Infix Functions in Kotlin](http://www.baeldung.com/kotlin-infix-functions) |
20 |
| -- [Try-with-resources in Kotlin](http://www.baeldung.com/kotlin-try-with-resources) |
21 |
| -- [Regular Expressions in Kotlin](http://www.baeldung.com/kotlin-regular-expressions) |
22 |
| -- [Objects in Kotlin](http://www.baeldung.com/kotlin-objects) |
23 |
| -- [Reading from a File in Kotlin](http://www.baeldung.com/kotlin-read-file) |
24 |
| -- [Guide to Kotlin @JvmField](http://www.baeldung.com/kotlin-jvm-field-annotation) |
25 |
| -- [Filtering Kotlin Collections](http://www.baeldung.com/kotlin-filter-collection) |
26 |
| -- [Writing to a File in Kotlin](http://www.baeldung.com/kotlin-write-file) |
27 |
| -- [Lambda Expressions in Kotlin](http://www.baeldung.com/kotlin-lambda-expressions) |
28 |
| -- [Kotlin String Templates](http://www.baeldung.com/kotlin-string-template) |
29 |
| -- [Working with Enums in Kotlin](http://www.baeldung.com/kotlin-enum) |
30 |
| -- [Create a Java and Kotlin Project with Maven](http://www.baeldung.com/kotlin-maven-java-project) |
31 |
| -- [Reflection with Kotlin](http://www.baeldung.com/kotlin-reflection) |
32 |
| -- [Get a Random Number in Kotlin](http://www.baeldung.com/kotlin-random-number) |
33 |
| -- [Idiomatic Logging in Kotlin](http://www.baeldung.com/kotlin-logging) |
| 3 | +- [Introduction to the Kotlin Language](https://www.baeldung.com/kotlin) |
| 4 | +- [Guide to the “when{}” Block in Kotlin](https://www.baeldung.com/kotlin-when) |
| 5 | +- [Comprehensive Guide to Null Safety in Kotlin](https://www.baeldung.com/kotlin-null-safety) |
| 6 | +- [Kotlin Java Interoperability](https://www.baeldung.com/kotlin-java-interoperability) |
| 7 | +- [Difference Between “==” and “===” operators in Kotlin](https://www.baeldung.com/kotlin-equality-operators) |
| 8 | +- [Generics in Kotlin](https://www.baeldung.com/kotlin-generics) |
| 9 | +- [Introduction to Kotlin Coroutines](https://www.baeldung.com/kotlin-coroutines) |
| 10 | +- [Destructuring Declarations in Kotlin](https://www.baeldung.com/kotlin-destructuring-declarations) |
| 11 | +- [Lazy Initialization in Kotlin](https://www.baeldung.com/kotlin-lazy-initialization) |
| 12 | +- [Overview of Kotlin Collections API](https://www.baeldung.com/kotlin-collections-api) |
| 13 | +- [Converting a List to Map in Kotlin](https://www.baeldung.com/kotlin-list-to-map) |
| 14 | +- [Data Classes in Kotlin](https://www.baeldung.com/kotlin-data-classes) |
| 15 | +- [Delegated Properties in Kotlin](https://www.baeldung.com/kotlin-delegated-properties) |
| 16 | +- [Sealed Classes in Kotlin](https://www.baeldung.com/kotlin-sealed-classes) |
| 17 | +- [JUnit 5 for Kotlin Developers](https://www.baeldung.com/junit-5-kotlin) |
| 18 | +- [Extension Methods in Kotlin](https://www.baeldung.com/kotlin-extension-methods) |
| 19 | +- [Infix Functions in Kotlin](https://www.baeldung.com/kotlin-infix-functions) |
| 20 | +- [Try-with-resources in Kotlin](https://www.baeldung.com/kotlin-try-with-resources) |
| 21 | +- [Regular Expressions in Kotlin](https://www.baeldung.com/kotlin-regular-expressions) |
| 22 | +- [Objects in Kotlin](https://www.baeldung.com/kotlin-objects) |
| 23 | +- [Reading from a File in Kotlin](https://www.baeldung.com/kotlin-read-file) |
| 24 | +- [Guide to Kotlin @JvmField](https://www.baeldung.com/kotlin-jvm-field-annotation) |
| 25 | +- [Filtering Kotlin Collections](https://www.baeldung.com/kotlin-filter-collection) |
| 26 | +- [Writing to a File in Kotlin](https://www.baeldung.com/kotlin-write-file) |
| 27 | +- [Lambda Expressions in Kotlin](https://www.baeldung.com/kotlin-lambda-expressions) |
| 28 | +- [Kotlin String Templates](https://www.baeldung.com/kotlin-string-template) |
| 29 | +- [Working with Enums in Kotlin](https://www.baeldung.com/kotlin-enum) |
| 30 | +- [Create a Java and Kotlin Project with Maven](https://www.baeldung.com/kotlin-maven-java-project) |
| 31 | +- [Reflection with Kotlin](https://www.baeldung.com/kotlin-reflection) |
| 32 | +- [Get a Random Number in Kotlin](https://www.baeldung.com/kotlin-random-number) |
| 33 | +- [Idiomatic Logging in Kotlin](https://www.baeldung.com/kotlin-logging) |
34 | 34 | - [Kotlin Constructors](https://www.baeldung.com/kotlin-constructors)
|
35 | 35 | - [Creational Design Patterns in Kotlin: Builder](https://www.baeldung.com/kotlin-builder-pattern)
|
36 | 36 | - [Kotlin Nested and Inner Classes](https://www.baeldung.com/kotlin-inner-classes)
|
|
0 commit comments