``` object RustGlue { private external fun gre...
# android
r
Copy code
object RustGlue {
    private external fun greetings(to: String): String

    fun hello(to: String) = greetings(to)
}