The R Project SVN R

Rev

Rev 2 | Rev 2389 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

\name{stop}
\title{Stop Function Execution}
\usage{
stop(message)
}
\alias{stop}
\description{
\code{stop} stops execution of the current expression, prints the
message given as its argument and then returns to the top level
prompt.
}
\seealso{
\code{\link{warning}}.
}
\examples{
if(iter > 10) stop("too many iterations")
}
\keyword{enviroment}
\keyword{programming}