For expression vs while loop syntax #77
Answered
by
Alexzander-Stone
Alexzander-Stone
asked this question in
Questions
-
Asked by
Keywords |
Beta Was this translation helpful? Give feedback.
Answered by
Alexzander-Stone
Mar 17, 2024
Replies: 1 comment
-
The initial Here's relevant Aptos.dev documentation that dives further, with examples: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Alexzander-Stone
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The initial
for
expression within the error was designed with awhile
loop structure.You'll need to replace
for (i)
withwhile (i)
.Here's relevant Aptos.dev documentation that dives further, with examples: