Hacker News new | ask | show | jobs
by throwaway81523 14 days ago
CL is definitely less dynamic than Python. Dunno about the others.
1 comments

Why do you think so?

All of them support changing anything at anytime, killing all JIT assumptions, and forcing it to redo the world.

Stop execution, land into the debugger, change whatever code you feel like during the debugging session and then redo last statement, continuing execution.

There are also ways to do this on fly, without necessarily using the debugger.