fubark
fubark
Yes, it's planned. You'll be able to reload namespace variables/functions during a `-dev` run from the cli. Reloading modules/types is unlikely due to static typing but we should be able...
It's `cyber help`, but I suppose `-h` and `--help` should be aliases too. I will also update the CLI docs. For building wasm, see the `build.md`. That is for standalone...
I have added CLI instructions to the docs. Closing, thanks.
Right now they are similar but having our own format allows us to extend it further later on. I'm not against supporting JSON5 though. Ideally it would be a third-party...
Currently the only way to persist vars is to bind a `Map` object created by the host which continues to persist across evals (it rebinds the map object everytime). Here's...
Just had another idea... We could also expose an API to get all the static vars and increase their reference count by 1 and manage them so they aren't cleaned...
`print` also adds a new line so it invokes printer twice one for the '2' and another for '\n'. What you could do is check for the newline character and...
Doing so would either need a fixed buffer where longer strings would get truncated or an extra heap allocation. Neither is a great choice IMO. I think it's the right...
That would be nice to have! I would appreciate a PR even if it's just a barebones api over the zon package (just reading about it now). I'm not sure...
Yea that's fine too. A lot of the data types do not map to C structs so that would be easier to expose. The only issue is it would require...