mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2026-01-19 12:00:05 +00:00
Documentation updated
Documentation updated: - preprint of SAS Global Forum 2021 article added. - files from the live demo added.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
/*** 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;
|
||||
Reference in New Issue
Block a user