racket/collects/mzlib/scribblings/port.scrbl
Eli Barzilay ac26fe7554 A ton of @scheme*' -> @racket*' and related updates.
Also, updates some of the mzlib files to point at `racket/*' libraries
rather than to `scheme/*' ones.
2011-06-25 04:08:47 -04:00

17 lines
508 B
Racket

#lang scribble/doc
@(require "common.rkt"
(for-label mzlib/port))
@mzlib[#:mode title port]
The @racketmodname[mzlib/port] library mostly re-provides
@racketmodname[scheme/port].
@defproc[(strip-shell-command-start [in input-port?]) void?]{
Reads and discards a leading @litchar{#!} in @racket[in] (plus
continuing lines if the line ends with a backslash). Since
@litchar{#!} followed by a forward slash or space is a comment, this
procedure is not needed before reading Scheme expressions.}