Evaluate
[expr]Hold
form.Create a function f with a held argument:
SetAttributes[f, HoldAll]
f[1 + 2]
Evaluate
forces evaluation of the argument, even though f has
the HoldAll
attribute:
f[Evaluate[1 + 2]]
Hold[Evaluate[1 + 2]]
HoldComplete[Evaluate[1 + 2]]
Evaluate[Sequence[1, 2]]