From 148f9b016a292fc74983db7391820a57965915bb Mon Sep 17 00:00:00 2001 From: Haxk20 Date: Sun, 1 Oct 2017 16:15:13 +0200 Subject: [PATCH] Create Hello_world.kt --- Hello_world.kt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Hello_world.kt diff --git a/Hello_world.kt b/Hello_world.kt new file mode 100644 index 0000000..e92918a --- /dev/null +++ b/Hello_world.kt @@ -0,0 +1,5 @@ +//This creates Main function your code will be in this function +fun main(args : Array) { +//This will print Hello World. + println("Hello World!") +}