1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
\name{printFlush}
\alias{printFlush}
\title{Print Arguments and Flush the Console}
\description{Passes all its arguments unchaged to the standard \code{print} function; after the
execution of print it flushes the console, if possible.
}
\usage{
printFlush(\dots)
}
\arguments{
\item{\dots}{Arguments to be passed to the standard \code{\link[base]{print}} function.}
}
\details{
Passes all its arguments unchaged to the standard \code{print} function; after the
execution of print it flushes the console, if possible.
}
\value{Returns the value of the \code{\link[base]{print}} function.}
\author{
Peter Langfelder, \email{Peter.Langfelder@gmail.com}
}
\seealso{
\code{\link[base]{print}}
}
\keyword{print}
|