mirror of
https://github.com/sasjs/adapter.git
synced 2026-01-04 11:10:05 +00:00
13 lines
170 B
SAS
13 lines
170 B
SAS
/**
|
|
@file
|
|
@brief Returns Macro Variables
|
|
|
|
<h4> SAS Macros </h4>
|
|
**/
|
|
|
|
data work.macvars;
|
|
set sashelp.vmacro;
|
|
run;
|
|
%webout(OPEN)
|
|
%webout(OBJ,macvars)
|
|
%webout(CLOSE) |