Remix.run Logo
bpavuk 7 hours ago

hey, the idea of Krossover is actually dope! my sole question is, why does it exist?

I understand that one might call Rust from Kotlin for performance reasons (I do that often, Mozilla does, some others too), but Kotlin from Rust? where would it be useful?

no snark or subtext here, I'm genuinely curious

wofo 6 hours ago | parent [-]

Calling Kotlin from Rust (and other languages) is useful when you want access to an existing Kotlin codebase and would rather avoid creating a full-blown port. I guess most people don't do things like this because creating bindings for languages that are not C (or C-like) is usually cumbersome. Krossover is trying to fill that gap for Kotlin. Does that make sense?

bpavuk 2 hours ago | parent [-]

pretty much!

I'm still curious about case studies. I can imagine that something has SDK for Kotlin but not for Rust, yet outside of that case, technical benefits are not yet obvious to me.