Documentation updated

Documentation updated:
- preprint of SAS Global Forum 2021 article added.
- files from the live demo added.
This commit is contained in:
yabwon
2021-02-05 22:44:01 +01:00
parent 40f3a00cb2
commit c2e06995f5
16 changed files with 259 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
/*** HELP START ***/
/*
## General Info: ##
The `%mcrTwo()` macro is the main macro of the package.
It has one key-value parameter `m` with default value `mcrOne`.
*/
/*** HELP END ***/
%macro mcrTwo(m=mcrOne);
%put **This is macro &sysmacroname.**;
%put **and I am calling the &m.**;
%&m.()
%put The answer is: %sysfunc(inputn("I don't know...", infNum.));
%mend mcrTwo;
/*** HELP START ***/
/*
## Examples: ##
Example 1. Basic use-case:
~~~~~~~~~~~~~~~~~~~~~~~~~~
%mcrTwo(m=mcrOne)
~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/*** HELP END ***/