OpenJDK and Oracle JDK

What now with Kotlin and JVM: “Oracle has announced that, effective January 2019, Java SE 8 public updates will no longer be available for “Business, Commercial or Production use” without a commercial license.” https://www.oracle.com/technetwork/java/java-se-support-roadmap.html From jetbrains: “We are happy to announce the first Technology Preview of Kotlin/Native that compiles Kotlin directly to machine code. The […]

A loganalyzer with Kotlin-native basic

https://kotlinlang.org/docs/reference/ If you have a basic Kotlin/Native Application good, if not look at the tutorial here: Basic Kotlin/Native Application Getting started Basics Classes and objects Functions and lambdas Etc

Basic Kotlin/Native Application

https://kotlinlang.org/docs/tutorials/native/basic-kotlin-native-app.html Obtaining the compiler Kotlin/Native is available for macOS, Linux and Windows. Depending on the operating system we’re working on, we’ll need to download the correct compiler. While cross-platform compilation is possible (i.e. using one platform to compile for another), in this first tutorial we’re going to compile for the same operating system we’re running […]

Compile Kotlin and run jar from command line

Compile Kotlin and run jar Kotlin: Kotlin is a statically typed programming language that runs on the Java virtual machine and also can be compiled to JavaScript source code or use the LLVM compiler infrastructure. It is sponsored and developed by JetBrains. While the syntax is not compatible with Java, the JVM implementation of the […]