Refactor: Move primitive tests into test directory

This commit is contained in:
2025-09-26 00:16:25 -07:00
parent 4c409605d9
commit e78e3db098

11
test/primitives.hi Normal file
View File

@@ -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)