From 7c0ab72e5b27dbcac6795cfbc0ba702968ec0e64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Halil=20RA=C5=9EO?= Date: Wed, 3 Jan 2018 11:39:26 +0300 Subject: [PATCH] Adding Hello world kotlin example --- src/halil/raso/com/tutorials/helloworld/helloworld.kt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/halil/raso/com/tutorials/helloworld/helloworld.kt diff --git a/src/halil/raso/com/tutorials/helloworld/helloworld.kt b/src/halil/raso/com/tutorials/helloworld/helloworld.kt new file mode 100644 index 0000000..72ab9fd --- /dev/null +++ b/src/halil/raso/com/tutorials/helloworld/helloworld.kt @@ -0,0 +1,5 @@ +package halil.raso.com.tutorials.helloworld + +fun main(args : Array) { //entry point of any kotlin program. + println("Hello, world!") +} \ No newline at end of file