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!") +}