Files
SAS_PACKAGES/SPF/Documentation/Paper_1079-2021/myPackage/004_data/mylib.smalldataset.sas
yabwon c2e06995f5 Documentation updated
Documentation updated:
- preprint of SAS Global Forum 2021 article added.
- files from the live demo added.
2021-02-05 22:44:01 +01:00

13 lines
169 B
SAS

/*** HELP START ***/
/*
`myLib.smallDataset` data
*/
/*** HELP END ***/
data myLib.smallDataset;
do n = ., -1, 0, 1;
m = put(n, fmtNum.);
output;
end;
run;