Skip to content

Variable Declarations

Benedict Albrecht edited this page Jun 2, 2026 · 3 revisions

Variable Declarations

All declaration forms available in Crodox, shown with their type and default scope.


Declaration Forms

Syntax Type Scope Behavior
<< variable >> Standard :following Creates dependency, overwrites
<< "path" >> Path - File path reference
<< 'variable' >> Reference - Creates dependency, no overwrite
<< VARIABLE >> Uppercase - Overwrites, no dependency
<< variable:following >> Standard :following Explicit default scope
<< variable:up >> Standard :up Visible to parent
<< variable:down >> Standard :down Visible to children
<< variable:siblings >> Standard :siblings Visible to all siblings
<< variable:global >> Standard :global Visible everywhere
<< variable:hook >> Standard :hook Cross-file matching

See also: Variables Overview · Path · Reference · Uppercase

Clone this wiki locally