Recall Constant Values

You can request the value of a constant without allowing it to execute using the Value Of operator (?):

?Age

The Value Of operator simply returns a copy of the constant's value without checking to see if the constant has been evaluated yet. If the constant has not been evaluated, Value Of returns null. If the constant has been evaluated, the value of the last evaluation is returned.

See Value Of.

See About the Constant Function.