forEach
예:
listOf(1, 2, 3).forEach { }
빠른 수정에서는 forEach 섹션에 익명 매개변수를 삽입합니다.
listOf(1, 2, 3).forEach { _ -> }