1
0
mirror of https://github.com/janet-lang/janet synced 2025-07-06 20:12:53 +00:00

Remove debug instruction.

Calvin Rose 2018-07-04 00:41:58 -04:00
parent 8556c00093
commit 3286bff406

@ -171,7 +171,6 @@ failure to return or error.
| `call` | `(call dest callee)` | $dest = call($callee, args) |
| `clo` | `(clo dest index)` | $dest = closure(defs[$index]) |
| `cmp` | `(cmp dest lhs rhs)` | $dest = dst\_compare($lhs, $rhs) |
| `debug` | `(debug)` | Suspend current fiber |
| `div` | `(div dest lhs rhs)` | $dest = $lhs / $rhs |
| `divi` | `(divi dest lhs rhs)` | $dest = $lhs /i $rhs |
| `divim` | `(divim dest lhs im)` | $dest = $lhs /i im |