BounceFuck: Effective, Simple Addition
Looks like my previous attempt at an addition-only calculator in BounceFuck was very ineffective. This script does the same thing, but in about 1/3 of the space.
1 2 3 4 5 6 7 8 | /,!|+!\{-v}.
\}\/\/\ }/
$,-----\
/-----/
\-- --\
/-----/
\-----\
\/\/\/ |
The difference is that here, 48 is subtracted only once. The other addition-calculator subtracted 48 from two memory cells and added it to one.
