- This wiki is out of date, use the continuation of this wiki instead
Say
From FenixWiki
(Difference between revisions)
Revision as of 15:09, 19 April 2007 (edit) Sandman (Talk | contribs) ← Previous diff |
Revision as of 15:09, 19 April 2007 (edit) (undo) Sandman (Talk | contribs) Next diff → |
||
Line 11: | Line 11: | ||
| '''STRING''' message || - The message to be put in the Fenix Console | | '''STRING''' message || - The message to be put in the Fenix Console | ||
|} | |} | ||
+ | |||
+ | == Returns == | ||
+ | '''INT''' - [[true|1]] | ||
== Notes == | == Notes == |
Revision as of 15:09, 19 April 2007
Contents |
Definition
INT Say ( <STRING message> )
Puts a message in the Fenix console.
Parameters
STRING message | - The message to be put in the Fenix Console |
Returns
INT - 1
Notes
You can use brackets ("[]") to create a better view of the console:
Say("[NET] This is a message about NET.");
The "[NET]" part will be displayed grey.
Example
Program example; Begin Say("Hello World!"); Loop frame; End End