Skip to content

Commit

Permalink
Merge pull request kanaka#468 from epylar/patch-3
Browse files Browse the repository at this point in the history
Clarify "rest" builtin in guide.md
  • Loading branch information
kanaka authored Nov 19, 2019
2 parents 609fc44 + 66b7ea4 commit 5aa1f30
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion process/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1339,7 +1339,9 @@ implementation. Let us continue!
and return the first element. If the list (or vector) is empty or
is `nil` then `nil` is returned.
* `rest`: this function takes a list (or vector) as its argument and
returns a new list containing all the elements except the first.
returns a new list containing all the elements except the first. If
the list (or vector) is empty or is `nil` then `()` (empty list)
is returned.

* In the main program, call the `rep` function with the following
string argument to define a new control structure.
Expand Down

0 comments on commit 5aa1f30

Please sign in to comment.