From bdc6c936d2ca5265eb0b98614c4a2969a4c740a2 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Tue, 11 Feb 2014 07:19:33 +0400 Subject: [PATCH] some cleanup... Signed-off-by: Alex A. Naanou --- Slang/slang.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Slang/slang.js b/Slang/slang.js index 81ba061..dc39bd6 100755 --- a/Slang/slang.js +++ b/Slang/slang.js @@ -470,6 +470,7 @@ var BOOTSTRAP = [ ' - fun!', '', '', +'', '-------------------------------------------------------------------------------', '', ' The system consists of:', @@ -518,6 +519,8 @@ var BOOTSTRAP = [ ' TODO: add a complete word-set for work with dicts/namespaces', ' TODO: add topological comparison/diff', '', +'', +'', '-----------------------------------------------------------------------------', '', ' Traditionally, stack languages use a "stack effect" notation to document how', @@ -563,6 +566,8 @@ var BOOTSTRAP = [ ' NOTE: this notation is currently used as a means to documenting words and is', ' not interpreted in any way.', '', +'', +'', '-------------------------------------------------------------------------------', '', ' Basic words for block manipulation:', @@ -833,8 +838,10 @@ var BOOTSTRAP = [ '', '-- Create a block containg a range of n numbers form 0 and adding s to', '-- each next number...', -':: range2 ( n s -- b )', +':: range/2 ( n s -- b )', ' [ swap range swap [] swap push \\ * 0 before map ]', +//':: range/3 ( a n s -- b )', +//' [ swap range swap [] swap push \\ * 0 before map ]', '', ''].join('\n')