Everything is an expression in wolfram, what about the semicolon ;?
;
FullFrom[a=3;Plot] (*is `;` inside an expression? *)
Yep. a;b is equivalent to CompoundExpression[a, b].
a;b
CompoundExpression[a, b]
See the relevant documentation for more info.