Variable naming rules in Kotlin
Tuesday, January 23, 2024 in Kotlin
Categories:
As you know, every variable must have a unique name. Although it may seem problem-free at first, as your software expands, your codes may become difficult to understand. Most of the software developers’ time is spent reading the code written by …
Comment Lines in Kotlin Programming
Sunday, January 21, 2024 in Kotlin
Categories:
A computer program consists of various pieces of code coming together and working in harmony. Each block of code does what is expected of it. As time goes on, the program developers who write these codes begin to forget and get confused about which …
Kotlin value assignment and type inference
Saturday, January 20, 2024 in Kotlin
Categories:
In this article, we will explain some of the finer points you need to know about defining variables in the Kotlin programming language. We have prepared this article in addition to the rules we explained in our previous two articles ("Kotlin …
Constants and variables in Kotlin
Wednesday, January 17, 2024 in Kotlin
Categories:
We introduced the topic of defining variables and assigning values in the Kotlin programming language in our previous article. In this article, we will take a closer look at assigning values with const and val. val variables The code below defines …
Kotlin Variable and Value definition
Wednesday, January 17, 2024 in Kotlin
Categories:
What is a variable? A variable is a record location in which a number, text or any other information is kept. Variables are almost the most important building blocks in programming. There are variables in which these values are kept in all the …
Basic Literals in Kotlin
Thursday, January 11, 2024 in Kotlin
Categories:
No matter how complicated, all programming languages perform operations on integers, characters, strings, etc. performed on values. We call these values Literal expressions. It would be very appropriate to explain these types before starting to write …
First Kotlin Program Hello World
Monday, January 01, 2024 in Kotlin
Categories:
When starting to learn programming languages, we always start with the same example. Let’s start our Kotlin programming article with the “Hello World” program without breaking tradition. You can copy the code you see below and paste …