You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently BALLS only supports continuous code to avoid having to write as much Huff it'd be useful to support some basic constructs that make branching possible:
labels: labels allow marking a certain part of the code as a possible control flow arrival point, separating logic into before/after (EVM: JUMPDEST)
gotos: jumps to a label unconditionally (EVM: JUMP)
conditional gotos: just a conditional goto, accepts a value and jumps if the value is non-zero (EVM: JUMPI)
The text was updated successfully, but these errors were encountered:
Currently BALLS only supports continuous code to avoid having to write as much Huff it'd be useful to support some basic constructs that make branching possible:
JUMPDEST
)JUMP
)JUMPI
)The text was updated successfully, but these errors were encountered: