also, does a for-loop get turned into a while loop...
# getting-started
f
also, does a for-loop get turned into a while loop under the hood?
k
It gets turned into jumps and compares.
while
and `for`do not really exist in bytecode and assembler, rather certain patterns of jumps and compares can be identified as such and therefore reduced into their assumed original representation.
👆 1
f
i see, thank you