diff options
author | JongChan Choi <disjukr@naver.com> | 2013-09-21 04:17:53 +0900 |
---|---|---|
committer | JongChan Choi <disjukr@naver.com> | 2013-09-21 04:27:24 +0900 |
commit | d3c5a723999b57774169e5cce28bebd3fc943cea (patch) | |
tree | f7bde03e883e8b4d95349326f602e4ad54db4dfd /brainfuck.html.markdown | |
parent | 7aa69ae3d7e616e1664c5f11d264d827e7bc5fce (diff) |
fix typo
Diffstat (limited to 'brainfuck.html.markdown')
-rw-r--r-- | brainfuck.html.markdown | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/brainfuck.html.markdown b/brainfuck.html.markdown index 9282381f..9cc7a937 100644 --- a/brainfuck.html.markdown +++ b/brainfuck.html.markdown @@ -53,25 +53,25 @@ until cell #1 is 0, and cell #2 holds cell #1's old value. Because we're on cell #1 at the end of the loop, move to cell #2, and then print out the value in ASCII. -Also keep in mind that the spaces are purely for readibility purposes. You +Also keep in mind that the spaces are purely for readability purposes. You could just as easily write it as: ,[>+<-]>. Try and figure out what this program does: -,>,< [ > [ >+ >+ << -] >> [- << + >>] <<< -] >> +,>,< [ > [ >+ >+ << -] >> [- << + >>] <<< -] >> This program takes two numbers for input, and multiplies them. The gist is it first reads in two inputs. Then it starts the outer loop, conditioned on cell #1. Then it moves to cell #2, and starts the inner -loop conditioned on cell #2, incrementing cell #3. However, there comes a +loop conditioned on cell #2, incrementing cell #3. However, there comes a problem: at the end of the inner loop, cell #2 is zero. To solve this problem, we also increment cell #4, and then recopy cell #4 into cell #2. ``` -And that's brainfuck. Not that hard, eh? For fun, you can write your own -brainfuck programs, or you can write a brainfuck interpreter in another +And that's brainfuck. Not that hard, eh? For fun, you can write your own +brainfuck programs, or you can write a brainfuck interpreter in another language. The interpreter is fairly simple to implement, but if you're a masochist, try writing a brainfuck interpreter… in brainfuck. |