mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Add comment to separate functions categories
This commit is contained in:
parent
7c2bd365bd
commit
265042a219
@ -3,6 +3,7 @@ language: whip
|
|||||||
contributors:
|
contributors:
|
||||||
- ["Tenor Biel", "http://github.com/L8D"]
|
- ["Tenor Biel", "http://github.com/L8D"]
|
||||||
- ["Saurabh Sandav", "http://github.com/SaurabhSandav"]
|
- ["Saurabh Sandav", "http://github.com/SaurabhSandav"]
|
||||||
|
- ["Paulo Henrique Rodrigues Pinheiro", "https://github.com/paulohrpinheiro"]
|
||||||
author: Tenor Biel
|
author: Tenor Biel
|
||||||
author_url: http://github.com/L8D
|
author_url: http://github.com/L8D
|
||||||
filename: whip.lisp
|
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")
|
(words "foobar nachos cheese") ; => ("foobar" "nachos" "cheese")
|
||||||
; Join list of strings together.
|
; Join list of strings together.
|
||||||
(unwords ("foo" "bar")) ; => "foobar"
|
(unwords ("foo" "bar")) ; => "foobar"
|
||||||
|
; Successor and Predecessor
|
||||||
(pred 21) ; => 20
|
(pred 21) ; => 20
|
||||||
(succ 20) ; => 21
|
(succ 20) ; => 21
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user