Straightforward Coding (from Fraktal SAS Programming): Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
K (Wolf-Dieter Batz verschob die Seite Straightforward Coding ( from Fraktal SAS Programming) nach Straightforward Coding (from Fraktal SAS Programming), ohne dabei eine Weiterleitung anzulegen) |
K |
||
Zeile 1: | Zeile 1: | ||
− | |||
As we remember from the '''''run group'' segment type''' example, code segments are verbatim encapsulated by an initializing statement that is accompanied by a corresponding termination statement. '''MACRO definitions''' are defined by using these two specific statements: | As we remember from the '''''run group'' segment type''' example, code segments are verbatim encapsulated by an initializing statement that is accompanied by a corresponding termination statement. '''MACRO definitions''' are defined by using these two specific statements: |
Version vom 30. Januar 2014, 09:52 Uhr
As we remember from the run group segment type example, code segments are verbatim encapsulated by an initializing statement that is accompanied by a corresponding termination statement. MACRO definitions are defined by using these two specific statements:
%MACRO name; program code %MEND name;
%NAME;