summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndre Polykanine A.K.A. Menelion ElensĂșlĂ« <andre@oire.org>2017-10-24 02:48:07 +0300
committerGitHub <noreply@github.com>2017-10-24 02:48:07 +0300
commit419a561f27a4bac2f79695afbffb58e698d20b4c (patch)
treef1b96572cf2c52329ac3fa0a8ac6e3338e7f0faa
parent0b1190b272c2d04e0c2b20da992a1b1ebbaf9901 (diff)
parent265042a219ddb681125fb72549bea280a114e671 (diff)
Merge pull request #2945 from paulohrpinheiro/fix-whip-en
[whip/en] Add comment to separate functions categories
-rw-r--r--whip.html.markdown2
1 files changed, 2 insertions, 0 deletions
diff --git a/whip.html.markdown b/whip.html.markdown
index e7e5e427..c692714a 100644
--- a/whip.html.markdown
+++ b/whip.html.markdown
@@ -3,6 +3,7 @@ language: whip
contributors:
- ["Tenor Biel", "http://github.com/L8D"]
- ["Saurabh Sandav", "http://github.com/SaurabhSandav"]
+ - ["Paulo Henrique Rodrigues Pinheiro", "https://github.com/paulohrpinheiro"]
author: Tenor Biel
author_url: http://github.com/L8D
filename: whip.lisp
@@ -232,6 +233,7 @@ undefined ; user to indicate a value that hasn't been set
(words "foobar nachos cheese") ; => ("foobar" "nachos" "cheese")
; Join list of strings together.
(unwords ("foo" "bar")) ; => "foobar"
+; Successor and Predecessor
(pred 21) ; => 20
(succ 20) ; => 21
```