Type : CREATION_INTERNE
No se manipulan datos. El script solo genera salidas de texto en el registro (log) a través de %PUT.
| 1 | %macro x; |
| 2 | %macro y ; |
| 3 | %macro z ; |
| 4 | %put in z ; |
| 5 | %mend z ; |
| 6 | |
| 7 | %put in y ; |
| 8 | %mend y ; |
| 9 | |
| 10 | %put in x ; |
| 11 | %mend x ; |
| 1 | %x; |
| 2 | %y |
| 3 | %z |