<A NAME=CONT>
<TITLE>CONT</TITLE></A>
<b><a href=r37_idx.html>INDEX</a></b><p><p>
<B>CONT</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>command</B><P>
<P>
The command <em>cont</em> returns control to an interactive file after a
<A HREF=r37_0128.html>pause</A> command that has been answered with <em>n</em>.
<P>
<P>
<P> <H3>
examples: </H3>
<P><PRE><TT></TT></PRE><P>Suppose you are in the middle of an interactive file.
<P><PRE><TT>
factorize(x**2 + 17*x + 60);
{{X + 12,1},{X + 5,1}}
pause;
Cont? (Y or N)
n
saveas results;
factor1 := first results;
FACTOR1 := {X + 12,1}
factor2 := second results;
FACTOR2 := {X + 5,1}
cont; </TT></PRE><P> the file resumes<P><PRE><TT>
</TT></PRE><P>
<P>
<P>
A
<A HREF=r37_0128.html>pause</A> allows you to enter your own REDUCE commands, ch
ange
switch values, inquire about results, or other such activities. When you
wish to resume operation of the interactive file, use <em>cont</em>.
<P>
<P>
<P>
<P>