-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Accessing Store globals #157
Comments
Could you expand a bit on what your goal is and what you're using globals for? Globals in a store can't be enumerated so you'd need to store your own list of them somewhere, for example on the host in Python. The |
Thanks for the response. Basically, I'm trying to use wasmtime and the VmWare labs Wasm Python interpreter to create an isolated version of |
Ah ok, in that case I think the "globals" you're referring to are perhaps Python globals? If so they have no relation to a WebAssembly |
Hello, I’ve built a wasm-powered replacement for the exec() function here and wasmtime has been invaluable!
That being said, I had a quick question - once I set a global value, how do I access the globals that I have set? Is it only through function execution?
Sample code:
The data function of the Store class returns None for me. Would appreciate some guidance, thanks!
The text was updated successfully, but these errors were encountered: