doc update
This commit is contained in:
@@ -79,8 +79,8 @@
|
|||||||
|`(reduce lambda acumulator list)`|Reduces list|`>>> (reduce (lambda (x y) (+ (* x 10) y)) 0 '(1 2 3 4)) => 1234`|List manipulation|
|
|`(reduce lambda acumulator list)`|Reduces list|`>>> (reduce (lambda (x y) (+ (* x 10) y)) 0 '(1 2 3 4)) => 1234`|List manipulation|
|
||||||
|`(exit code)`|Exit the program with an integer code||System|
|
|`(exit code)`|Exit the program with an integer code||System|
|
||||||
|`(quit code)`|Same as (exit ..)||System|
|
|`(quit code)`|Same as (exit ..)||System|
|
||||||
|`(print ..)`|Print several values and return the last one||IO|
|
|`(print ..)`|Print one or several values separated by space and return the last one|`>>> (print "pi" "is" 3.14)\npi is 3.140000 => 3.140000`|IO|
|
||||||
|`(random low high)`|Get a random number between two numbers inclusively||System|
|
|`(random low high)`|Get a random number between two numbers inclusively|`>>> (random 1 6) => 5`|System|
|
||||||
|`(include file)`|Read a file and execute its code||IO|
|
|`(include file)`|Read a file and execute its code||IO|
|
||||||
|`(input [prompt])`|Get user input with an optional prompt||IO|
|
|`(input [prompt])`|Get user input with an optional prompt||IO|
|
||||||
|`(read)`|Reads in the printed representation of a Lisp object from input-stream, builds a corresponding Lisp object, and returns the object||IO|
|
|`(read)`|Reads in the printed representation of a Lisp object from input-stream, builds a corresponding Lisp object, and returns the object||IO|
|
||||||
|
|||||||
Reference in New Issue
Block a user