Artifact 1859e25121d84c40871bd0d96b15ce0f65beb92f5145289075bb7bffc954e33d:
- Executable file
r37/lisp/csl/html/r37_0125.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 1059) [annotate] [blame] [check-ins using] [more...]
<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>