/***************************************************************************************************************** SAS file name: abbreviations File location: _________________________________________________________________________________________________________________ Purpose: To demonstrate how to add and utilize abbreviations in SAS. Author: Peter Clemmensen Creation Date: 22/04/2018 This program supports the example page "Save Typing And Add Abbreviation In SAS" on SASnrd.com *****************************************************************************************************************/ /* _hash abbreviation */ if _N_ = 1 then do; declare hash h(); rc = h.defineKey('k'); rc = h.defineData('d'); rc = h.defineDone(); call missing(k, d); end; /* _killwork abbreviation */ proc datasets lib=work nolist kill; run;quit;