Skip to content

v1.5.0

Choose a tag to compare

@github-actions github-actions released this 02 Nov 16:57
· 47 commits to main since this release
c6f1f90
  • Breaking: Bracket notation [CONSTANT_NAME] is now required for referencing constants in arithmetic expressions and for-loop bounds (fixes #115).
    • Example: #define constant RESULT = [A] + [B] (was: A + B)
    • This follow the Huff language convention for constant values using brackets.
    • Applies to: constant definitions with arithmetic expressions, for-loop bounds (for(i in [START]..[END])), and for-loop step values.
    • Migration: Update code from for(i in START..END) to for(i in [START]..[END]) and arithmetic expressions from A + B to [A] + [B].