ToC DocOverview CGDoc RelNotes Index PermutedIndex
Allegro CL
Home Previous Up Next Table of Contents Index
  ANSI Common Lisp   21 Streams   21.2 Dictionary of Streams

21.2.21 write-char Function

Syntax:
write-char character &optional output-stream    character

Arguments and Values:
character - a character.

output-stream -- an output stream designator. The default is standard output.

Description:
write-char outputs character to output-stream.

Examples:
 (write-char #\a)
 a
 #\a
 (with-output-to-string (s) 
   (write-char #\a s)
   (write-char #\Space s)
   (write-char #\b s))
 "a b"

Side Effects:
The output-stream is modified.

Affected By:
*standard-output*, *terminal-io*.

See Also:
read-char, write-byte, write-sequence

Allegro CL Implementation Details:
None.

Home Previous Up Next Table of Contents Index
© Franz Inc. All Rights Reserved - File last updated 2022-07-25