Request: FFI and interfaces with other languages
Does it have any libraries or support libraries from other languages ( Rust, Python etc ...) ? How can we make a webserver with it ?
Not yet, it currently only runs pure computations. We will add IO very soon, and give you the option to call arbitrary C functions via FFI. Running a full webserver will be involved though, but this is the path
I would like to see a linear algebra library
All you have to support is dlopen() and system() ? Then you can call arbitrary code. A FFI that can pass a cacheline is probably the sweet spot for CPU static linking.
All you have to support is dlopen() and system() ? Then you can call arbitrary code. A FFI that can pass a cacheline is probably the sweet spot for CPU static linking.
We just added support to loading libraries with dlopen and calling the functions in there. You still need to write your wrappers in C.
In the future we'll also probably add something like python's ctypes for writing wrappers in bend.