From 2a5e965edfafed9bc24b882d331f28d117e0e300 Mon Sep 17 00:00:00 2001 From: John Date: Sun, 21 Apr 2024 23:07:16 -0500 Subject: [PATCH] sample-code: Add hello.cl --- sample-code/hello.cl | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 sample-code/hello.cl diff --git a/sample-code/hello.cl b/sample-code/hello.cl new file mode 100644 index 0000000..a375fad --- /dev/null +++ b/sample-code/hello.cl @@ -0,0 +1,3 @@ +fn main() { + print("Hello, world!") +}