Bradly Ovitt
Bradly Ovitt
What about something like a kernel API? Something that serves as a more platform independent interface to the hardware like how I can create a TCP connection by importing linux...
I'd be happy to try to implement a FFI to D, C, C++, and maybe some other high level language. I am unfamiliar with D but am familiar with Zig...
One more thing we should consider in terms of design is how we are going to handle the types between D and Silq. Naturally classical types would be used for...
I think that the foreign file imports should be in the form of strings because file names can have spaces in them. We could also use pragma syntax instead of...
That sounds like a pain. Perhaps we just force the developers to make smart decisions about calling functions with unsafe interfaces and for functions which return errors on execution like...
You're right. I suppose I was feeling lazy last yesterday. What if all return values from foreign functions are wrapped in a "try" constructor. The user would be forced to...