From de9737ec5599170270e9145d15292c97ae6ab4ba Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Mon, 10 Feb 2014 16:38:18 +0400 Subject: [PATCH] minor tweak... Signed-off-by: Alex A. Naanou --- Slang/slang.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Slang/slang.js b/Slang/slang.js index 5aab6a7..843f1fe 100755 --- a/Slang/slang.js +++ b/Slang/slang.js @@ -603,17 +603,18 @@ var BOOTSTRAP = [ '', ' [ 1 2 3 ] [ 1 add ] map', ' -> [ 2 3 4 ]', - +'', ' the returned value (stack) of the input block is put into the result', ' block, this enables us to both remove (empty stack) and expand (more', ' than one value) the resulting list...', '', ' [ 1 2 3 4 ] [ dup ] map', ' -> [ 1 1 2 2 3 3 4 4 ]', - +'', ' [ 1 2 3 4 ] [ dup 2 gt ? [ ] else [ . ] ] map', ' -> [ 3 4 ]', '', +'', ' this enables us to construct words like filter, which makes the code', ' in the last example more readable:', '',