Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

$Increment the actual cell by 65
%Increment the actual cell by 32
/Multiply the value of the actual cell by 2 (may have side effects on the tape)
aCopy the value of actual cell to the next cell on the right (may have side effects on the tape)
ACopy the value in the next cell to the right to the actual cell (may have side effects on the tape)
{ ... }

Every command between { and the corresponding closing bracket } is duplicated immediately

 

  1. Open your BF grammar of the previous tutorial (or create a new one) and create rules so that the BF editor accepts the syntax changes.
  2. Re-generate your BF code and run your eclipse instance to verify the changes.

...