From 830361050c319935b3c645d59cdc76a49dc80c65 Mon Sep 17 00:00:00 2001 From: vaclavt Date: Tue, 1 Mar 2022 20:28:36 +0100 Subject: [PATCH] doc update --- doc/Doc.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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|