@raviqqe/stak 0.10.27 → 0.10.28

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 CHANGED
@@ -190,9 +190,10 @@ This means that Stak Scheme is suitable for embedding many small pieces of Schem
190
190
 
191
191
  - Environment: Ubuntu 24.04, x86-64
192
192
 
193
- | Benchmark | Stak (full [^2]) | Lua 5.4 |
194
- | ------------- | ---------------: | ------: |
195
- | Empty program | 0.528 us | 50.9 us |
193
+ | Benchmark | Stak (full [^2]) | Lua 5.4 |
194
+ | ---------------- | ---------------: | ------: |
195
+ | Empty program | 0.534 us | 48.9 us |
196
+ | Integer addition | 22.9 us | 50.0 us |
196
197
 
197
198
  [^1]: Minimal: Integer-only support + standard libraries based on libc
198
199
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@raviqqe/stak",
3
3
  "type": "module",
4
4
  "description": "Stak Scheme in WebAssembly",
5
- "version": "0.10.27",
5
+ "version": "0.10.28",
6
6
  "license": "SEE LICENSE IN ../LICENSE",
7
7
  "repository": {
8
8
  "type": "git",
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.__wbg_readstdin_07602bc1797e483d = function() {
364
+ imports.wbg.__wbg_readstdin_cee8f2b89b4a0c56 = 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.__wbg_writestderr_97a06a60623e7bbc = function(arg0) {
396
+ imports.wbg.__wbg_writestderr_cbdb73d423ee05be = function(arg0) {
397
397
  const ret = write_stderr(arg0);
398
398
  return ret;
399
399
  };
400
- imports.wbg.__wbg_writestdout_3573fb06a1fc9d4a = function(arg0) {
400
+ imports.wbg.__wbg_writestdout_9c55a6e6eff80ba4 = function(arg0) {
401
401
  const ret = write_stdout(arg0);
402
402
  return ret;
403
403
  };
package/stak_wasm_bg.wasm CHANGED
Binary file