Core Function MsgBox
From Sputnik Wiki
(Difference between revisions)
(Created page with "<pre> MsgBox( <expression> ) </pre> === Description === Show a message dialog. === Usage === With a string: <syntaxhighlight lang="sputnik"> MsgBox("Hello."); </syntaxhighli...") |
|||
Line 7: | Line 7: | ||
Show a message dialog. | Show a message dialog. | ||
− | === | + | === expression === |
With a string: | With a string: |
Revision as of 22:40, 26 November 2011
MsgBox( <expression> )
Description
Show a message dialog.
expression
With a string:
MsgBox("Hello.");
With a variable:
$testing = "Kittens"; MsgBox($testing);