commit 3b6a5049942fce03ee5642bde631180e44fe48bf
parent 209e4f00d4752a375e8ac68544c7bb3ff26ced01
Author: Alexander Burger <abu@software-lab.de>
Date: Thu, 27 Jan 2011 18:21:17 +0100
Ammended ref examples for (char 0) and (char NIL)
Diffstat:
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/doc/refC.html b/doc/refC.html
@@ -253,10 +253,16 @@ A # (typed 'A' and a space/return)
-> "A"
: (char 100) # Convert unicode to symbol
-> "d"
-: (char T) # Special case, catch all
--> # (not printable)
: (char "d") # Convert symbol to unicode
-> 100
+
+: (char T) # Special case
+-> # (not printable)
+
+: (char 0)
+-> NIL
+: (char NIL)
+-> 0
</code></pre>
<dt><a name="chdir"><code>(chdir 'any . prg) -> any</code></a>