From 0c87e5392b3fc558e8f02fb854c0b2458137e9f4 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Fri, 26 Sep 2025 01:05:00 -0700 Subject: [PATCH] Delete test/primitives.hi --- test/primitives.hi | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 test/primitives.hi diff --git a/test/primitives.hi b/test/primitives.hi deleted file mode 100644 index cf0a6b6..0000000 --- a/test/primitives.hi +++ /dev/null @@ -1,11 +0,0 @@ -// 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)