Difference between revisions of "Translations:Manual:Introduction/52/ru"

From Mudlet
Jump to navigation Jump to search
(Created page with "Чтобы соединить строки вместе, можно использовать символы".." : <syntaxhighlight lang="lua">my_full_name = "Bob" .. " the Bui...")
 
(No difference)

Latest revision as of 21:04, 15 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)
To concatenate strings together, you can use the .. expression:
<syntaxhighlight lang="lua">my_full_name = "Bob" .. " the Builder"</syntaxhighlight>

Чтобы соединить строки вместе, можно использовать символы".." :

my_full_name = "Bob" .. " the Builder"