• Contact Us
  • We are a dedicated and quite group of technologists.

Kotlin

for building Android apps

Hello, World!

// hello.kt
fun main(args : Array<String>) {
  val message = "hello, world!"
  println(message)
}