2022-11-18
Kotlin String Formatting with Examples
In this blogpost I want to show you how to format strings in Kotlin. I will show you three different ways to format strings in Kotlin.
Read moreIn this blogpost I want to show you how to format strings in Kotlin. I will show you three different ways to format strings in Kotlin.
Read moreIn kotlin, you can create an if else on one line of code. For example val num = if (value < 0) 0 else value; This can improve your code quality.
Read more