SASUnit Examples  Version 1.3.0
linux/_mkdir.sas
Go to the documentation of this file.
1 
23 %macro _mkdir (dir
24  );
25 
26  %SYSEXEC(mkdir "&dir.");
27 
28 %mend _mkdir;
29