Difference between revisions of "Translations:Manual:Introduction/149/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">
 
-- incorrect:
 
-- incorrect:
tempTimer(1, [[echo("hello!\n") ]])
+
tempTimer(1, [[ echo("hello!\n") ]])
tempTimer(1, [[echo("how are you?\n") ]])
+
tempTimer(1, [[ echo("how are you?\n") ]])
 
</syntaxhighlight>
 
</syntaxhighlight>

Latest revision as of 23:30, 14 June 2020

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">
-- incorrect:
tempTimer(1, [[ echo("hello!\n") ]])
tempTimer(1, [[ echo("how are you?\n") ]])
</syntaxhighlight>
-- incorrect:
tempTimer(1, [[ echo("hello!\n") ]])
tempTimer(1, [[ echo("how are you?\n") ]])