diff options
| author | Marshall Lochbaum <mwlochbaum@gmail.com> | 2021-08-26 22:09:07 -0400 |
|---|---|---|
| committer | Marshall Lochbaum <mwlochbaum@gmail.com> | 2021-08-26 22:09:07 -0400 |
| commit | 274ab64859f47f30dd0e5f79c35d4b483cc7ba5a (patch) | |
| tree | a6841804cd2cc66f51e3b92164be0f387161e134 /docs/repl.js | |
| parent | b2ee8443356492ba5bb4ea1bbe6154c339296068 (diff) | |
Fix REPL
Diffstat (limited to 'docs/repl.js')
| -rw-r--r-- | docs/repl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/repl.js b/docs/repl.js index f78294b6..4f8c3f6a 100644 --- a/docs/repl.js +++ b/docs/repl.js @@ -27,7 +27,7 @@ let repl = ()=>{ setTimeout(() => { try { let out=[]; sysvals.show = (x,w) => { out.push(x); return x; } - let c=compile(src,rt_sys); + let c=compile(src); setExplain(src,c); out.push(run.apply(null,c)); doc.rslt.textContent=out.map(fmt).join('\n'); |
