Skip to content

Commit f096ac3

Browse files
author
Ian Eyberg
committed
adding in kotlin example
1 parent 79a6a15 commit f096ac3

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

kotlin/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Kotlin Hello World
2+
==================
3+
4+
Compile your kotlin application:
5+
6+
```
7+
./kotlinc-native hello.kt -o hello
8+
```
9+
10+
Run it:
11+
12+
```sh
13+
$ ops run hello.kexe
14+
```

kotlin/hello.kt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fun main() {
2+
println("Hello Kotlin/Native!")
3+
}

0 commit comments

Comments
 (0)