mirror of
https://github.com/janet-lang/janet
synced 2025-07-15 08:22:59 +00:00

doc macro can take no arguments and print out all bindings. Fix an issues with the vm skipping over a breakpoint in some situations. Add examples/debugger.janet for proof of concept debugger.
9 lines
128 B
Plaintext
9 lines
128 B
Plaintext
# Load this file and run (myfn) to see the debugger
|
|
|
|
(defn myfn
|
|
[]
|
|
(debug)
|
|
(for i 0 10 (print i)))
|
|
|
|
(debug/fbreak myfn 3)
|