Skip to content

Latest commit

 

History

History

kotlin

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

kotlin

Scrpting, compiled & Interpreted language, in order to run simple code the code you must download kotlin and the java jre. Or install it through an IDE (Intellij, Android Studio or Eclipse.)

personal note I really like this language, it takes a lot of the things learned from python and problems with java and makes a more flexible, less dangerous (null exceptions, no casting, no primitive data types) language.

Install not needed

You can run kotlin from https://play.kotlinlang.org/

Compile / interpret

If you have more complex code in mind you can use an IDE

If yu want to run it at the command line, download kotlin

# source in fn.kt
# compile
$ kotlinc fn.kt -include-runtime -d fn.jar
# interpret
$ java --jar fn.jar

Reference(s)

Learning