Straightforward Coding (from Fraktal SAS Programming): Unterschied zwischen den Versionen

Aus phenixxenia.org
Zur Navigation springen Zur Suche springen
K
K
Zeile 1: Zeile 1:
 +
[[Kategorie:zazy]]
 +
{{SeitenNavigation1
 +
|links=xx_left.png
 +
|zurück=Realtime Information (from Fraktal SAS Programming)
 +
|rechts=xx_right.png
 +
|vorwärts=Generalized Approach (from Fraktal SAS Programming)
 +
|hoch=Duck_zazy_com.png
 +
|übersicht=Macro (from Fraktal SAS Programming)
 +
}}
  
 
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:
Zeile 7: Zeile 16:
  
 
  %NAME;
 
  %NAME;
 +
 +
{{SeitenNavigation1
 +
|links=xx_left.png
 +
|zurück=Realtime Information (from Fraktal SAS Programming)
 +
|rechts=xx_right.png
 +
|vorwärts=Generalized Approach (from Fraktal SAS Programming)
 +
|hoch=Duck_zazy_com.png
 +
|übersicht=Macro (from Fraktal SAS Programming)
 +
}}

Version vom 30. Januar 2014, 10:33 Uhr

Zurück

Übersicht

Vorwärts

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;

Zurück

Übersicht

Vorwärts