Browsing Korean translation

Don't show this notice anymore
Before translating, be sure to go through Launchpad Translators instructions and Korean guidelines.
1116 of 16 results
11.
The while statement executes a block of code while an expression evaluates true. For example::
while 문은 표현식이 참값인 동안 블록에 적힌 코드를 반복해서 실행합니다. ::
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:60
12.
The expression is evaluated when while statement is first reached, and then each time control reaches the end of the block. When the expression return a false value, the statement after the while statement is executed.
표현식은 while 문에 처음 도달했을 때 계산되며, 제어 흐름은 매번 블록 끝에 도달합니다. 표현식이 거짓값을 반환하면 while 문 아래에 있는 명령문이 실행됩니다.
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:80
13.
Ren'Py does not have continue, break, or for statements. Continue and break statements can be replaced by jumps to labels placed before or after the while loop, respectively. The first example of a while loop, above, shows how a while loop can replace a for statement.
렌파이에는 countinue, break, for 문이 없습니다. continue 와 break 문은 while 반복문 앞이나 뒤에 특정 레이블로 점프할 수 있는 jump 문을 입력하는 것으로 대체할 수 있습니다. 위의 예제 스크립트에서 첫 번째 while 문은 while문이 for 문을 대체할 수 있는 방법을 보여주고 있습니다.
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:84
14.
Pass Statement
pass 문
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:93
15.
The pass statement can be used when a block is required, but no statement is suitable. It does nothing.
pass 문은 블록이 있어야하지만 적당한 명령문이 없는 경우에 사용할 수 있습니다. pass문은 아무 동작을 하지 않습니다.
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:95
16.
For example::
::
Translated and reviewed by baekansi
Located in ../../source/conditional.rst:98
1116 of 16 results

This translation is managed by Launchpad Korean Translators, assigned by Launchpad Translators.

You are not logged in. Please log in to work on translations.

Contributors to this translation: baekansi.