Chapter Contents |
Previous |
Next |
RUN |
Valid: | anywhere |
Category: | Program Control |
Syntax | |
Without Arguments | |
Arguments | |
Details | |
Examples |
Syntax |
RUN <CANCEL>; |
Without arguments, the RUN statement executes the previously entered SAS statements.
Arguments |
Details |
Though the RUN statement is not required between steps in a SAS program, using it creates a step boundary and can make the SAS log easier to read.
Examples |
proc print data=report; title 'Status Report'; run;
data circle; infile file-specification; input radius; c=2*4.13*radius; run cancel;
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.