Bart Jablonski a7ef089a07 Create README.md
2022-11-16 11:26:14 +01:00
2022-11-12 17:37:25 +01:00
2022-11-16 11:26:14 +01:00

macroArray - Macroarrays for macro codes


The macroArray package implements an array, a hash table, and a dictionary concept in macrolanguage. For example:

  %array(ABC[17] (111:127), macarray=Y); 
  
  %macro test();
    %do i = 1 %to 17; 
      %put &i.) %ABC(&i.); 
    %end;
  %mend;
  %test() 
  
  %let %ABC(13,i) = 99999; /* i = insert */

  %do_over(ABC, phrase=%nrstr( 
      %put &_i_.%) %ABC(&_i_.); 
      ),
      which = 1:H:2
  );

SHA256 digest for the latest version of macroArray: 371B92A5ABBE82C53F7D63BC5C0D1EBD4695603D3894D8A9A5D5777D1AB59B30

Documentation for macroArray

Description
Macroarrays for macro codes
Readme 1.3 MiB
Languages
SAS 100%