6 Commits
1.0.1 ... 1.0.5

Author SHA1 Message Date
Bart Jablonski
a211d86642 The macroArray package [ver. 1.0.5]
The macroArray package [ver. 1.0.5]

Package regenerated with the latest version of the SAS Packages Framework (20230411).
2023-04-11 18:37:56 +02:00
Bart Jablonski
efbeae5a36 Update README.md 2022-12-15 22:45:51 +01:00
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
Bartosz Jablonski
613569560f The macroArray package [ver. 1.0.3]
The macroArray package [ver. 1.0.3]

Package regenerated with the latest version of the SAS Packages Framework.
2022-11-27 00:02:00 +01:00
Bartosz Jablonski
bf2fa01d1d macroArray [1.0.2]
macroArray [1.0.2]

Package regenerated with the latest version of the SAS Packages Framework.
2022-11-21 14:39:41 +01:00
Bart Jablonski
a7ef089a07 Create README.md 2022-11-16 11:26:14 +01:00
7 changed files with 33 additions and 3 deletions

30
README.md Normal file
View File

@@ -0,0 +1,30 @@
### `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`: F*85E3BE4D163AC5223B6EC9D3C25C46564A656E3830998B4555A963180D767160
[**Documentation for macroArray**](./macroarray.md "Documentation for macroArray")
To work with a package use the [**SAS Packages Framework**](https://github.com/yabwon/SAS_PACKAGES/blob/main/README.md "SPFinit").

BIN
hist/1.0.2/macroarray.zip Normal file

Binary file not shown.

BIN
hist/1.0.3/macroarray.zip Normal file

Binary file not shown.

BIN
hist/1.0.4/macroarray.zip Normal file

Binary file not shown.

BIN
hist/1.0.5/macroarray.zip Normal file

Binary file not shown.

View File

@@ -19,7 +19,7 @@
---
# The macroArray package [ver. 1.0.1] <a name="macroarray-package"></a> ###############################################
# The macroArray package [ver. 1.0.5] <a name="macroarray-package"></a> ###############################################
The **macroArray** package implements a macro array facility:
- `%array()`,
@@ -75,10 +75,10 @@ Package contains:
Required SAS Components:
*Base SAS Software*
*SAS package generated by generatePackage, version 20221112.*
*SAS package generated by generatePackage, version 20230411*
The SHA256 hash digest for package macroArray:
`371B92A5ABBE82C53F7D63BC5C0D1EBD4695603D3894D8A9A5D5777D1AB59B30`
`F*85E3BE4D163AC5223B6EC9D3C25C46564A656E3830998B4555A963180D767160`
---
# Content description ############################################################################################

Binary file not shown.