From 57e868b1e46d1b049baedcaa0b8e60f688b0df29 Mon Sep 17 00:00:00 2001 From: TudbuT Date: Thu, 20 Feb 2025 01:03:12 +0100 Subject: [PATCH] in block example --- inblock.spl | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 inblock.spl diff --git a/inblock.spl b/inblock.spl new file mode 100644 index 0000000..4eaf7c2 --- /dev/null +++ b/inblock.spl @@ -0,0 +1,11 @@ +func main { exitcode | with args ; + + "Hello, World" in { + = :readf1<"Hello, {}!"> => &nop + = :readf1<"Hello, {}"> => &nop + } if { + "name is " print println + } + + 0 +}