We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96267fd commit a7ef089Copy full SHA for a7ef089
README.md
@@ -0,0 +1,30 @@
1
+### `macroArray` - Macroarrays for macro codes
2
+
3
+---
4
5
+The **macroArray** package implements an array, a hash table, and a dictionary concept in macrolanguage. For example:
6
+```sas
7
+ %array(ABC[17] (111:127), macarray=Y);
8
9
+ %macro test();
10
+ %do i = 1 %to 17;
11
+ %put &i.) %ABC(&i.);
12
+ %end;
13
+ %mend;
14
+ %test()
15
16
+ %let %ABC(13,i) = 99999; /* i = insert */
17
18
+ %do_over(ABC, phrase=%nrstr(
19
+ %put &_i_.%) %ABC(&_i_.);
20
+ ),
21
+ which = 1:H:2
22
+ );
23
+```
24
25
+SHA256 digest for the latest version of `macroArray`: 371B92A5ABBE82C53F7D63BC5C0D1EBD4695603D3894D8A9A5D5777D1AB59B30
26
27
+[**Documentation for macroArray**](./macroarray.md "Documentation for macroArray")
28
29
30
0 commit comments