So, ya know how retro games use jump commands to do cool stuff? (Like jumping between lines of code not velocity) Is that possible in makecode? (If not Richard pls make extension )
I mean, a goto is basically a jump command, and there is most certainly a goto command in MakeCode Javascript or Blocks.
There is not a Jump/Goto command in typescript or blocks. Goto is a very low level command, and is generally not good for code readability reasons. It would also be weird in blocks because how would you specify the “line” you want to jump to? Goto is usually useful for doing “cool stuff” when you can directly access memory, like in a lower level language. It is also useful for optimization, but the compiler already does much of that for you. Anything you can to with a Goto, you can do with higher level language features like For loops and functions.
What implementation are you looking to replicate?
I mean for blocks, you could choose a block to jump to or somethin
So uh, I had a very dumb idea of attempting to decompile the og mario into makecode arcade