Hello, in KMM, it is possible to make a binary or ...
# server
r
Hello, in KMM, it is possible to make a binary or something to use it in another language like Ruby On Rails ?
j
you can compile to a native library supporting C interop
r
Why
C interop
and not
binaires
?
k
Maybe because C is the lingua-franca of programming?
🌶️ 2
j
binaries
generates some executables, but since you want to reuse the binary in another app (Ruby on Rails) you want to generate a library, your options are to generate a JS library, a WASM one, or a C one. I know nothing about Ruby but here your best options seems to be a C library.
r
Ok, thank’s I’ll look into it !