From 6ecf51506159cfd6a944627a317ad6c6f5d88372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yv=EF=BD=9E=E4=B8=AD=E5=9B=BD=E9=B1=BC=EF=BD=9E?= =?UTF-8?q?=F0=9F=87=A8=F0=9F=87=B3=F0=9F=87=A8=F0=9F=87=B3=F0=9F=87=A8?= =?UTF-8?q?=F0=9F=87=B3?= Date: Fri, 11 Sep 2026 14:45:57 +0800 Subject: [PATCH] Add main function to print 'hello, world' --- hello.kt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 hello.kt diff --git a/hello.kt b/hello.kt new file mode 100644 index 0000000..2809737 --- /dev/null +++ b/hello.kt @@ -0,0 +1,4 @@ +fun main(){ + // hello, world + println("hello, world") +}