Files
macroarray/README.md
Bartosz Jablonski cf8a94fb25 The macroArray package [ver. 1.0.4]
The macroArray package [ver. 1.0.4]

Package regenerated with the latest version of the SAS Packages Framework.
2022-12-15 17:56:34 +01:00

31 lines
679 B
Markdown

### `macroArray` - Macroarrays for macro codes
---
The **macroArray** package implements an array, a hash table, and a dictionary concept in macrolanguage. For example:
```sas
%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`: 8584C249C308B5E8B620ED5F695BC58CD426172FB2EACD5FF9C6899F9DE2B470
[**Documentation for macroArray**](./macroarray.md "Documentation for macroArray")