is there a way to inline somehow something like th...
# getting-started
e
is there a way to inline somehow something like this
Copy code
val reportErrorTokenInFace: () -> Unit = {
        logger.error { "OBJ: Not supported token in face description detected" }
        return
    }
so that the
return
actually returns the function where
reportErrorTokenInFace
is called?