mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2026-01-07 07:00:05 +00:00
24 lines
478 B
SAS
24 lines
478 B
SAS
|
|
%include "C:\SAS_PACKAGES\generatePackage.sas";
|
|
|
|
ods html;
|
|
%generatePackge(filesLocation=C:\SAS_PACKAGES\SQLinDS)
|
|
|
|
|
|
/*
|
|
* filename reference "packages" and "package" are keywords;
|
|
* the first one should be used to point folder with packages;
|
|
* the second is used internaly by macros;
|
|
|
|
filename packages "C:\SAS_PACKAGES";
|
|
%include packages(loadpackage.sas);
|
|
|
|
dm 'log;clear';
|
|
%loadpackage(SQLinDS)
|
|
|
|
%helpPackage(SQLinDS)
|
|
%helpPackage(SQLinDS,*)
|
|
|
|
%unloadPackage(SQLinDS)
|
|
*/
|