From 7241c9a6752d16ac7173fda69b8a22aae9688ff4 Mon Sep 17 00:00:00 2001 From: Solomon Hykes Date: Fri, 2 Apr 2021 01:03:29 +0000 Subject: [PATCH] New example: hello world Signed-off-by: Solomon Hykes --- examples/hello-world/main.cue | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 examples/hello-world/main.cue diff --git a/examples/hello-world/main.cue b/examples/hello-world/main.cue new file mode 100644 index 00000000..bd993325 --- /dev/null +++ b/examples/hello-world/main.cue @@ -0,0 +1,4 @@ +package main + +name: string | *"world" +message: "Hello, \(name)!"