diff --git a/primitives.hi b/primitives.hi deleted file mode 100644 index cf0a6b6..0000000 --- a/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)