fprintf

[procedure] fprintf port format-spec obj ...

ChezScheme: formats objs by format-spec and writes out to port. The format-spec is of format.

Chicken: formats objs by format-spec and writes out to port. Recognizes "
", "~S", "~A", "~\n", "~B", "~O", "~X", "~C", "~~", "~!", "~?".

See also printf, format

[procedure] fprintf port format-spec obj ...

SLIB: this works more like C's fprintf. C's format specification is used. See also printf, sprintf.