Feat: Test declaration, assignment, and primitives

This commit is contained in:
2025-09-26 00:14:46 -07:00
parent 945c4e7bcb
commit 251b129cca

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