mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-04 03:36:34 +02:00
Added docs
This commit is contained in:
parent
58a06ee200
commit
0da571423a
1 changed files with 21 additions and 5 deletions
|
@ -4,15 +4,31 @@ The `(scheme write)` library provides procedures for writing
|
||||||
Scheme objects.
|
Scheme objects.
|
||||||
|
|
||||||
- [`display`](#display)
|
- [`display`](#display)
|
||||||
- `write`
|
- [`write`](#write)
|
||||||
|
- [`write-simple`](#write-simple)
|
||||||
|
- [`write-shared`](#write-shared)
|
||||||
|
|
||||||
#display
|
#display
|
||||||
|
|
||||||
(display)
|
(display obj)
|
||||||
(display port)
|
(display obj port)
|
||||||
|
|
||||||
|
Write object to the given output port, or the current output if none is given. Strings and characters are output using only the characters that they represent, without any enclosing quotes, etc.
|
||||||
|
|
||||||
#write
|
#write
|
||||||
|
|
||||||
(write)
|
(write obj)
|
||||||
(write port)
|
(write obj port)
|
||||||
|
|
||||||
|
Write object to the given output port, or the current output if none is given. Objects are written exactly as they are represented in code.
|
||||||
|
|
||||||
|
|
||||||
|
#write-shared
|
||||||
|
|
||||||
|
(write-shared obj)
|
||||||
|
(write-shared obj port)
|
||||||
|
|
||||||
|
#write-simple
|
||||||
|
|
||||||
|
(write-simple obj)
|
||||||
|
(write-simple obj port)
|
||||||
|
|
Loading…
Add table
Reference in a new issue