Search code examples
sasmainframejclzosmvs

Creating and Defining a SAS Array on MVS SAS


I need to build an array in SAS on MVS

I tried using

ARRAY MONTHS[12] $3 ('JAN' 'FEB' 'MAR' ... 'DEC');

but that is not working

Any suggestions?


Solution

  • I ended figuring it out

    ARRAY MONTHS{*} JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC;