From aaa0d01d2c035d8e9567fa4b4e60bd1f523cf135 Mon Sep 17 00:00:00 2001 From: zongz Date: Tue, 24 Oct 2023 20:17:13 +0800 Subject: [PATCH] publish package helloworld Signed-off-by: zongz --- helloworld/README.md | 2 ++ helloworld/kcl.mod | 5 +++++ helloworld/kcl.mod.lock | 0 helloworld/main.k | 1 + 4 files changed, 8 insertions(+) create mode 100644 helloworld/README.md create mode 100644 helloworld/kcl.mod create mode 100644 helloworld/kcl.mod.lock create mode 100644 helloworld/main.k diff --git a/helloworld/README.md b/helloworld/README.md new file mode 100644 index 00000000..4d63fef3 --- /dev/null +++ b/helloworld/README.md @@ -0,0 +1,2 @@ +## Introduction +This is a kcl package named helloworld. diff --git a/helloworld/kcl.mod b/helloworld/kcl.mod new file mode 100644 index 00000000..bef7e7f7 --- /dev/null +++ b/helloworld/kcl.mod @@ -0,0 +1,5 @@ +[package] +name = "helloworld" +edition = "0.0.1" +version = "0.0.1" + diff --git a/helloworld/kcl.mod.lock b/helloworld/kcl.mod.lock new file mode 100644 index 00000000..e69de29b diff --git a/helloworld/main.k b/helloworld/main.k new file mode 100644 index 00000000..fa7048e6 --- /dev/null +++ b/helloworld/main.k @@ -0,0 +1 @@ +The_first_kcl_program = 'Hello World!' \ No newline at end of file