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,18 @@
/*** HELP START ***/
/*
`myLib` library
*/
/*** HELP END ***/
data _null_;
length rc0 $ 32767 rc1 rc2 8;
lib = "myLib";
rc0 = DCREATE(lib, "%sysfunc(pathname(work))/");
put rc0 = ;
rc1 = LIBNAME(lib, "%sysfunc(pathname(work))/" !! lib, "BASE");
rc2 = LIBREF (lib);
if rc2 NE 0 then
rc1 = LIBNAME(lib, "%sysfunc(pathname(work))", "BASE");
run;
libname myLib LIST;