
put_char(+Char)

   Puts the single character text Char onto the buffered current output.

Arguments
   Char                Single character string or atom.

Type
   Character I/O

Description
   Puts the single-character string or atom Char onto the current output.


Modes and Determinism
   put_char(+) is det

Exceptions
     4 --- Char is not instantiated.
     5 --- Char is instantiated, but not to a single character string or atom.

Examples
      Equivalent to put_char(output, Char).  (see put_char/2 for details).





See Also
   get_char / 1, get_char / 2, put_char / 2, nl / 0
