@raviqqe/stak 0.10.20 → 0.10.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +1 -1
- package/stak_wasm.js +3 -3
- package/stak_wasm_bg.wasm +0 -0
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ Stak Scheme aims to be:
|
|
|
16
16
|
- A subset of [Chibi Scheme](https://github.com/ashinn/chibi-scheme), [Gauche](https://github.com/shirok/Gauche), and [Guile](https://www.gnu.org/software/guile/)
|
|
17
17
|
- A portable scripting environment that supports even no-`std` and no-`alloc` platforms
|
|
18
18
|
|
|
19
|
-
For more information and usage, visit [the full documentation](https://raviqqe.
|
|
19
|
+
For more information and usage, visit [the full documentation](https://raviqqe.com/stak/install).
|
|
20
20
|
|
|
21
21
|
## Install
|
|
22
22
|
|
|
@@ -163,7 +163,7 @@ fn run_scheme(module: &UniversalModule) -> Result<(), EngineError> {
|
|
|
163
163
|
let mut engine = Engine::new(&mut heap, &mut functions)?;
|
|
164
164
|
|
|
165
165
|
// Finally, run the module!
|
|
166
|
-
engine.
|
|
166
|
+
engine.run(module)
|
|
167
167
|
}
|
|
168
168
|
```
|
|
169
169
|
|
package/package.json
CHANGED
package/stak_wasm.js
CHANGED
|
@@ -361,7 +361,7 @@ function __wbg_get_imports() {
|
|
|
361
361
|
const ret = arg0.queueMicrotask;
|
|
362
362
|
return ret;
|
|
363
363
|
};
|
|
364
|
-
imports.wbg.
|
|
364
|
+
imports.wbg.__wbg_readstdin_a7dca812a8d45ae4 = function() {
|
|
365
365
|
const ret = read_stdin();
|
|
366
366
|
return ret;
|
|
367
367
|
};
|
|
@@ -393,11 +393,11 @@ function __wbg_get_imports() {
|
|
|
393
393
|
const ret = arg0.then(arg1, arg2);
|
|
394
394
|
return ret;
|
|
395
395
|
};
|
|
396
|
-
imports.wbg.
|
|
396
|
+
imports.wbg.__wbg_writestderr_69d7a9fbc997f5ab = function(arg0) {
|
|
397
397
|
const ret = write_stderr(arg0);
|
|
398
398
|
return ret;
|
|
399
399
|
};
|
|
400
|
-
imports.wbg.
|
|
400
|
+
imports.wbg.__wbg_writestdout_d1c916cfe2ea3c96 = function(arg0) {
|
|
401
401
|
const ret = write_stdout(arg0);
|
|
402
402
|
return ret;
|
|
403
403
|
};
|
package/stak_wasm_bg.wasm
CHANGED
|
Binary file
|