CONT INDEX

CONT _ _ _ _ _ _ _ _ _ _ _ _ command

The command cont returns control to an interactive file after a pause command that has been answered with n.

examples:

Suppose you are in the middle of an interactive file.

 

 

  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; 

the file resumes



A pause 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 cont.