Delete test/blocks.hi

This commit is contained in:
2025-09-26 01:05:09 -07:00
committed by GitHub
parent 0c87e5392b
commit 4d3a5659a6

View File

@@ -1,13 +0,0 @@
// Test: Block as a data structure (object)
config: {
version: "1.0"
author: "Master"
}
_("Config version:", config.version)
// Test: Block as an executable function (with params and implicit return)
add: (a, b) {
a + b
}
result: add(5, 10)
_("Function result:", result)