diff --git a/doc/Doc.md b/doc/Doc.md index 5c1d536..3781467 100644 --- a/doc/Doc.md +++ b/doc/Doc.md @@ -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| |`(exit code)`|Exit the program with an integer code||System| |`(quit code)`|Same as (exit ..)||System| -|`(print ..)`|Print several values and return the last one||IO| -|`(random low high)`|Get a random number between two numbers inclusively||System| +|`(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|`>>> (random 1 6) => 5`|System| |`(include file)`|Read a file and execute its code||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|