From bd74b951556ec12b3168e433bc15db3ee9e9161a Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Wed, 18 Jun 2025 23:05:20 +0200 Subject: [PATCH] Added hello example --- examples/hello/hello.q | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 examples/hello/hello.q diff --git a/examples/hello/hello.q b/examples/hello/hello.q new file mode 100644 index 0000000..05029db --- /dev/null +++ b/examples/hello/hello.q @@ -0,0 +1,5 @@ +import io + +main() { + io.write("Hello\n") +} \ No newline at end of file