Programming for beginners
Programming for Cats — Part #1
You don’t have to be an engineer or person who knows math and physics to write a code and make programs. It ain’t so difficult as you think!
Have you ever been interested in what developers do or talk about between each other? Did you hear such words like functions, classes, variables, etc? Or maybe more difficult like requests, databases, networks, etc.
There are really a lot of words that are too difficult. And must say that you can find such words and expressions that even some well experienced developers won’t understand. By how difficulties and you shouldn’t know everything about it to learn it.
“The secret to getting ahead is getting started.”
― Mark Twain
If you ever start something — you should start with some essentials. Even if you learn some language or something else, learn it from some simple things.
In this tutorial we’ll look at one of the most beautiful and modern languages, that are really friendly for understanding. And because it’s one of my favourites as well.
Also, you can find links for the next parts of this series below.
Kotlin
So, I won’t tell about this language much. From picture above you can see a bit of code, that might seem very friendly and understandable for you. By the way we’ll look at 3 topics at this part of series, such as data types.
Don’t worry, it would be really easy! So, let’s get started!
Data types — Int, Double, String, Bool
The fundament of any programming languages is variables, that keeps some data and that data has some type. Data types could be simple and difficult. But don’t be afraid. Difficult is mean that it just contains some simple variable inside. By the way let's look at some simplest types and those that have the most often usage in programming life.
Int
Data type that contains integer values like 0, 1, 2, 3… or -1, -2, -3…
Here some usage samples:






