mirror of
https://github.com/janet-lang/janet
synced 2025-12-15 04:58:07 +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
Janet
9 lines
128 B
Janet
# Load this file and run (myfn) to see the debugger
|
|
|
|
(defn myfn
|
|
[]
|
|
(debug)
|
|
(for i 0 10 (print i)))
|
|
|
|
(debug/fbreak myfn 3)
|