Skip to main content

Kotlin :A New Beginning

Hello guys,
You might have heard about a new language supported for the android Officially by Google,Named as Kotlin.


Kotlin is a statically typed Programming language.By statically typed language i mean that the type checking is done during complile time.

It was developed in July 2011 by Jetbrains in Russia,In 2017 Google declared Kotlin as the official langauge for android.
However the Traditional Java developers are sticking to java.
New programmers who want to make android apps,Web apps can use Kotlin as a language of preference.
With this Post i welcome you to the world of Kotlin.

There is no good book for kotlin but there is the official documentation on Kotlin.I refer the official Kotlin documentation.

The main aim of this post if to Introduce you Kotlin and its Uses and also how to write programs in Kotlin.

The official documentation can be found on the website  KOTLIN


I belive that this post will help you to write codes in Kotlin.


So lets begin

Firstly i will tell you How to install Kotlin 

There are many options
1.Use IntelliJ Idea IDE
2.Use Android Studio 3.0
3.Use Eclipse Ide
4.Online Compiler.



If you are a beginner i suggest you to use IntelliJ

This post will only help you learn KOTLIN as a language,Not the development of android apps using kotlin.
The development of android apps using KOTLIN will be posted in further posts.


After you get IntelliJ IDEA make sure u have the JDK installed and the Environment variables set.

Now we begin by typing the standard Hello world! program.


fun main(args: Array<String>)
{
println("hello world");
}



If you are familiar with Java,Atleast the basics of it You are done with almost 60 percent of kotlin.
Kotlin is very similar to java but it is more simple.





To define a function you have to write fun fun-name(arguments)

To print text we use println

Note that semicolons are optional.
Since most of the programming languages like C,C++,Java,Javascript have a semi-colon.
It is a good habit of including a semi-colon to the statements in a program.


Thank you guys
Subscribe for more on Kotlin and keep visiting,Stay tuned


Comments

  1. Really a great tutorial.I loved it
    i guess u shud be writing some textbooks on kotlin 'plz post more

    ReplyDelete

Post a Comment

Popular posts from this blog

Intro to Python Programming - 2. Basic Output

Hello everyone!           Considering the lot of requests I received from my dear friends and viewers, I shall now start posting step by step tutorials for mastering Python programming. I proceed with the assumption that you have a basic foundation of the C programming language . If not much of it, at least having some idea about the type specifiers such as ‘%d for integer, %f for floating point variables etc.’ and also, some basic ideas about data types such as int , float , char etc. would be of great help. :)           Before we begin with the coding part of python, I want you to understand a few basic concepts, like: 1.      Python is scripting language. 2.      Python programs do not make use of statement terminators like semicolons ‘;’ as in C, C++ and Java. 3.      A basic Python program does not require any header file. e.g. We use # include < stdio.h > in C to include standard I/O library We import libraries in Python only for some using some special

Printing the text horizontally in Python Programming language

Hi guys,         We know that the "print" function is used to print the data to the standard output device in Python Programming language. But, the print function automatically adds a newline character every time we cal it.        For example, consider a program segment to display numbers from 1 to 5:                                                                            for n in range ( 1 , 6 ):                                     print n           The output of the code will be:                               1                               2                               3                               4                               5   But what if we want the output to be something like:                 1 2 3 4 5    How do we go about it?     The answer to this is indeed very simple. The key is to add a "," after the variable  at the end of the print statement. Consider the following code to print the even a