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