Difference between revisions of "Translations:Manual:Introduction/147/en"

From Mudlet
Jump to navigation Jump to search
(Importing a new version from external source)
 
(Importing a new version from external source)
Line 1: Line 1:
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
-- this timer goes off 2 seconds after it was made
 
-- this timer goes off 2 seconds after it was made
tempTimer(2, [[Special:MyLanguage/ echo("hello!\n") | echo("hello!\n") ]])
+
tempTimer(2, [[echo("hello!\n") ]])
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 21:20, 31 July 2018

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Manual:Introduction)
<syntaxhighlight lang="lua">
-- this timer will greet you exactly 2 seconds after it was made
tempTimer(2, [[ echo("hello!\n") ]])
</syntaxhighlight>
-- this timer goes off 2 seconds after it was made
tempTimer(2, [[echo("hello!\n") ]])