Published on :

Sans titre

This code is also available in: Deutsch Español Français
1 Code Block
MACRO
Explanation :
Definition of the AHGdelta macro. It draws the borders and body of the triangle in the log and inserts the user message if it is not empty.
Copied!
1%macro AHGdelta(msg);
2 %put '#################### ';
3 %IF not %AHGblank(&msg) %THEN %put &msg ;
4 %put ' # ';
5 %put ' #### ';
6 %put ' ######## ';
7 %put ' ############ ';
8 %put ' ################ ';
9 %put '#################### ';
10%mend;
This material is provided "as is" by We Are Cas. There are no warranties, expressed or implied, as to merchantability or fitness for a particular purpose regarding the materials or code contained herein. We Are Cas is not responsible for errors in this material as it now exists or will exist, nor does We Are Cas provide technical support for it.