// Java: IntStream.range(1, 4).forEach(System.out::println);
// Kotlin :(包含范围) (1..3).forEach(::println)