|
> From: Andre' L. Micheaux [mailto:andre.micheaux@ATT.NET]
> I am reviewing some old SAS code and have come across ENDIT:
> I do not see this in the SAS Reference book version 6.
> What is this, and do I really need it: I always end a DATA
> step with RUN ;
The colon after the name
indicates that it is a data step label statement,
used with a goto or link statement.
link ENDIT;
goto ENDIT;
*...;
return;%*used with link;
ENDIT: *...;
return;%*used with link;
Ron Fehd the macro maven CDC Atlanta GA USA RJF2@cdc.gov
|