version 20200725, descriptions to macros added
This commit is contained in:
yabwon
2020-07-25 12:22:14 +02:00
parent 757d7a9ccc
commit 57fd048276
3 changed files with 27 additions and 16 deletions

View File

@@ -36,7 +36,7 @@
*/
/**#############################################################################**/
/* Macros to generate SAS packages, version 20200619 */
/* Macros to generate SAS packages, version 20020725 */
/* A SAS package is a zip file containing a group
of SAS codes (macros, functions, datasteps generating
data, etc.) wrapped up together and %INCLUDEed by
@@ -54,8 +54,10 @@
default value Y means "execute tests" */
,packages= /* location of other packages if there are
dependencies in loading */
)/secure;
)/secure
/*** HELP END ***/
desc = 'Macro to generate SAS packages, version 20020725. Run %generatePackage() for help info.'
;
%if %superq(filesLocation) = %then
%do;
%put ;
@@ -63,7 +65,7 @@
%put # This is short help information for the generatePackage macro #;
%put ###############################################################################;
%put # #;
%put # Macro to generate SAS packages, version 20200619 #;
%put # Macro to generate SAS packages, version 20020725 #;
%put # #;
%put # A SAS package is a zip file containing a group #;
%put # of SAS codes (macros, functions, datasteps generating #;
@@ -1190,7 +1192,7 @@ data _null_;
put ' end ; ';
%end;
put 'put "***"; put "* SAS package generated by generatePackage, version 20200619 *"; put "***";';
put 'put "***"; put "* SAS package generated by generatePackage, version 20020725 *"; put "***";';
put 'run; ' /;