Plot @@ {Sin@x, {x, 0, 6 Pi}}
will work most of the time. However, this syntax does not protect the variable x
from ouside assignments: x = 1;
Plot @@ {Sin@x, {x, 0, 6 Pi}}
will give an error, because the x
will be given the value 1 before Plot starts its job.