Online File
How to use this page
Rick Aster: Professional SAS Programming Shortcuts: Contents
%PUT Environment: &SYSSCP.; data _null_; do x = 45 to 58; a = 2**x; b = 1 + a; put x 2. +2 a f20. +2 b f20.; end; run;