Difference between revisions of "Translations:Manual:Introduction/61/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 the send command, you need to prefix and suffix them with two dots outside the quotes, like this:
<syntaxhighlight lang="lua">send("My name is " .. full_name .. ". What's yours?")</syntaxhighlight>

만약 send 명령어에 변수를 포함하고 싶다면, 따옴표 밖에 변수를 두 개의 점으로 앞뒤로 감싸야 합니다. 예를 들어, 다음과 같이 작성하세요:

send("내 이름은 " .. full_name .. "입니다. 당신은 어떻게 되시나요?")