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
Minor issue on your README, the C translations *dataptr++ and *dataptr-- change the pointer not the cell contents, you want (*dataptr)++ or ++*dataptr.
Edit: Oh dear, and your slides.
The text was updated successfully, but these errors were encountered:
Thanks a lot; operator precedence is hard, especially in pseudo code that you don't run. I've updated the README and the slides. Thanks for pointing it out! :)
A true double BF interpreter.
Minor issue on your README, the C translations
*dataptr++
and*dataptr--
change the pointer not the cell contents, you want(*dataptr)++
or++*dataptr
.Edit: Oh dear, and your slides.
The text was updated successfully, but these errors were encountered: