From 3878b57848c35e3b952c973530c1c36f1bddc3fd Mon Sep 17 00:00:00 2001 From: John Lorentzson Date: Fri, 16 May 2025 10:38:29 +0200 Subject: [PATCH] Add syntax example --- wip-duuqnd/syntax-example.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 wip-duuqnd/syntax-example.txt diff --git a/wip-duuqnd/syntax-example.txt b/wip-duuqnd/syntax-example.txt new file mode 100644 index 0000000..3c95293 --- /dev/null +++ b/wip-duuqnd/syntax-example.txt @@ -0,0 +1,7 @@ +dotimes x 200 + if x < 100 then + pixeldraw(x + 10, x + 10) + else + pixeldraw(x + 10, 110) + end +end