From e78e3db09835478f6c61486cf6dbf2c459c8549b Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 26 Sep 2025 00:16:25 -0700 Subject: [PATCH] Refactor: Move primitive tests into test directory --- test/primitives.hi | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/primitives.hi diff --git a/test/primitives.hi b/test/primitives.hi new file mode 100644 index 0000000..cf0a6b6 --- /dev/null +++ b/test/primitives.hi @@ -0,0 +1,11 @@ +// Test: Declaration (:) of a string and output (_) +message: "Testing primitives..." +_(message) + +// Test: Declaration of a number +count: 1 +_("Initial count:", count) + +// Test: Assignment (=) and a simple expression +count = count + 1 +_("New count:", count)