The LENGTH statement assigns a length of 35 to the DATA step variable
TEXT. In this particular case, the LENGTH statement is unnecessary because
the longest version appears in the first IF/THEN statement. However, using
the LENGTH statement ensures that even if the order of the conditional statements
changes, TEXT will be long enough to hold the longest version.
length text $ 35;