See this:
data transformed_class;
set sashelp.class;
newage = age * 5; /* the 5 here is a numeric literal */
newname = name !! 'X'; /* the 'X' is also a literal, in this case a string literal */
run;
In other programming languages (eg PASCAL), such things are often called "constants".
... View more