- This wiki is out of date, use the continuation of this wiki instead
Say
From FenixWiki
(Difference between revisions)
| Revision as of 02:52, 1 May 2007 (edit) Sandman (Talk | contribs) m ← Previous diff |
Revision as of 00:49, 24 July 2007 (edit) (undo) Rincewind (Talk | contribs) (→Example - screenshot added) Next diff → |
||
| Line 35: | Line 35: | ||
| End | End | ||
| </pre> | </pre> | ||
| + | |||
| + | This will result in something like: <br/> | ||
| + | [[Image:Say.png]] | ||
Revision as of 00:49, 24 July 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 - true
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

