We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement as a macro that just does syntax transformation
(defn foo [:address a b :uint256 x y] :internal :uint256 (return (+ y (* x 4)))
could then be called with a dict obj of key-value pairs of named arguments and their values
(foo addr1 addr2 10 20) (foo #{a addr1 b addr2 x 10 y 20}) ;; can indent for clarity (foo #{a addr1 b addr2 x 10 y 20})
alternative syntaxes could be
(foo @a addr1 @b addr2 @x 10 @y 20) (foo {a addr1} {b addr2} {x 10} {y 20})
The text was updated successfully, but these errors were encountered:
why do you want this @z80dev❓🤨 kinda dumb imo
Sorry, something went wrong.
No branches or pull requests
Implement as a macro that just does syntax transformation
could then be called with a dict obj of key-value pairs of named arguments and their values
alternative syntaxes could be
The text was updated successfully, but these errors were encountered: