mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2025-12-15 21:14:34 +00:00
Documentation updated: - preprint of SAS Global Forum 2021 article added. - files from the live demo added.
19 lines
385 B
SAS
19 lines
385 B
SAS
/*** 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;
|