MsgBox( <expression> )
Show a message dialog.
With a string:
MsgBox("Hello.");
With a variable:
$testing = "Kittens"; MsgBox($testing);