What about .so and .dylib files ?
since there is a new way to use dll from simple developemnt will be faster
simple, you can use the
```c
SIMPLE_API void init_simple_module(SimpleState *sState)
{
//standard streams
register_block("__std_print",std_print);
}
void std_print(void *pointer)
{
fprintf(stdout, "%s", SIMPLE_API_GETSTRING(2) );
}
compile to your lib e.g `lib.so` so in simple you could do
callDynamicModule("lib.so")
__std_print("Hello World")
```
refer to this.
the first code block in your dll.c
the second in your .sim file