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

Aus phenixxenia.org
Zur Navigation springen Zur Suche springen
K
K
Zeile 7: Zeile 7:
 
* '''1st:''' Programming is talking to a machine in a way the machine 'follows' your advice without any exception.
 
* '''1st:''' Programming is talking to a machine in a way the machine 'follows' your advice without any exception.
 
* '''2nd:''' Programming is authoring code in a way that owns and shows mathematical clarity by applying structures for conditional branching and repetitive execution of similar steps.
 
* '''2nd:''' Programming is authoring code in a way that owns and shows mathematical clarity by applying structures for conditional branching and repetitive execution of similar steps.
 +
  
 
Currently, '''''SAS''''' offers at least two means that support this notion, as well as environments where programming can be done:
 
Currently, '''''SAS''''' offers at least two means that support this notion, as well as environments where programming can be done:
  
* The Data Step Language ('''''"DSL"''''') is a full-fledged programming language of 3rd generation with some appreciated convenience features.
+
* [[Data Step Programming (from Fraktal SAS Programming)|The Data Step Language ('''''"DSL"''''') is a full-fledged programming language of 3rd generation with some appreciated convenience features.]]
* The '''''"Macro Facility"''''' uses a ninety-nine percent similar syntax to process character data that - might - represent your code, ending up in a code generator.
+
* [[Macro Programming (from Fraktal SAS Programming)|Generating Code|The '''''"Macro Facility"''''' uses a ninety-nine percent similar syntax to process character data that - might - represent your code, ending up in a code generator.]]

Version vom 21. Mai 2014, 11:50 Uhr


What is Programming?

Apart from literature's extensively discussed and complex structured answers we shall restrict ourselves here to a minimalistic idea:

  • 1st: Programming is talking to a machine in a way the machine 'follows' your advice without any exception.
  • 2nd: Programming is authoring code in a way that owns and shows mathematical clarity by applying structures for conditional branching and repetitive execution of similar steps.


Currently, SAS offers at least two means that support this notion, as well as environments where programming can be done: