<@U3Z9W7YTU> Please check the docs for the express...
# getting-started
g
@victortong Please check the docs for the expressions that you are trying to use, there are a lot of different problems That is fixed example:
Copy code
fun printLessThanTwo() {
    val numbers = 1..10
    numbers.forEach { x ->
        when {
            x < 2 -> println(x)
            else -> return
        }
        println("This line will execute")
    }
}