Short-Circuit evaluationinfix fun or(other: Boolean): Boolean (Common source) (Native source)/* 설명Performs a logical or operation between this Boolean and the other one. Unlike the || operator, this function does not perform short-circuit evaluation. Both this and other will always be evaluated.*/출처 코틀린의 or()은 short-circuit 연산을 수행 Xshort-circuit이란? ex. 조건 1 and 조건2 라고 할 때 조건1이 false이면 조건 2를 검사하지..