Search notes:

SAS macro: opt

tq84_opt returns the value of an option.
%macro tq84_opt(opt);
  %sysfunc(getoption(&opt))
%mend  tq84_opt;

%macro tq84_putOpt(opt);
  %put &opt=%tq84_opt(&opt);
%mend  tq84_putOpt;
Github repository about-SAS, path: /macros/opt.sas

See also

macros

Index