From 6eb210258d6c21a6634e1a459cd061a404ca78ba Mon Sep 17 00:00:00 2001 From: JongChan Choi Date: Sat, 21 Sep 2013 05:01:47 +0900 Subject: make explanation richer --- brainfuck.html.markdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'brainfuck.html.markdown') diff --git a/brainfuck.html.markdown b/brainfuck.html.markdown index 9cc7a937..27ac6921 100644 --- a/brainfuck.html.markdown +++ b/brainfuck.html.markdown @@ -67,8 +67,10 @@ 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 -problem: at the end of the inner loop, cell #2 is zero. To solve this problem, +problem: At the end of the inner loop, cell #2 is zero. In that case, +inner loop won't work anymore since next time. To solve this problem, we also increment cell #4, and then recopy cell #4 into cell #2. +Then cell #3 is the result. ``` And that's brainfuck. Not that hard, eh? For fun, you can write your own -- cgit v1.2.3