mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2025-12-11 03:04:35 +00:00
Documentation updated: - preprint of SAS Global Forum 2021 article added. - files from the live demo added.
16 lines
245 B
SAS
16 lines
245 B
SAS
/*** HELP START ***/
|
|
/*
|
|
`mcrOne` macro
|
|
*/
|
|
/*** HELP END ***/
|
|
|
|
%macro mcrOne();
|
|
%put **Hi! This is macro &sysmacroname.**;
|
|
data _null_;
|
|
set myLib.smallDataset;
|
|
p = f1(n);
|
|
p + f2(n);
|
|
put (n p) (= fmtNum.);
|
|
run;
|
|
%mend mcrOne;
|