From 6332c3a1b839c79f729d92b3985a5988eb6ea2a0 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Wed, 24 Sep 2025 07:47:19 -0700 Subject: [PATCH] Refactor: Clarify Block as the core construct --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index e20f41d..e080291 100644 --- a/index.html +++ b/index.html @@ -94,8 +94,8 @@ version: 1.0 // Declaration and initialization version = 1.1 // Assignment \`\`\` -## The Block: Unifying Objects and Functions -The **Block** (\`{}\`) is Hi's foundational structure, unifying data objects and executable functions. It is a sequence of expressions that can be invoked with \`()\`. +## The Block: The Core Construct +Every Hi file is an implicit **Block** (\`{}\`). It is the language's universal construct, unifying scopes, data structures (objects), and executable code (functions). A block is a sequence of expressions that can hold data or be invoked with \`()\`. ### As a Data Structure (Object) A block can hold \`key: value\` pairs. A \`#\` prefix denotes a private property.