Procedure (Proc) Step
Procedures usually take a SAS dataset and do something with it like:
Analyze the data
Produce a report
Make another dataset
Most syntax is Proc specific. That is, the options and statements that are legal in the Proc step depend on the particular Proc.
Proc statement
PROC
procedure-name
[
procedure-options
]
;
procedure-statements
;