Difference between revisions of "Translations:Manual:Introduction/68/ko"

From Mudlet
Jump to navigation Jump to search
(Updating translation from gettext import)
 
(No difference)

Latest revision as of 01:05, 17 February 2024

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)
If you’d like to include variables in your echo, you concatenate (put together) the value of your variable to the text:
<syntaxhighlight lang="lua">
my_gold = 5
echo("I have " .. my_gold .. " pieces of gold!\n")
</syntaxhighlight>

만약 에코에 변수를 포함시키고 싶다면, 변수의 값과 텍스트를 연결(concatenate)합니다:

my_gold = 5
echo("나는 " .. my_gold .. "개의 금을 가지고 있어!\n")