escargot/tools/debugger/tests/do_restart.js
Ádám László Kulcsár 475149426f Implement escargot debugger restart support
Implement restart in escargot and python debugger.
Also add debugger test.

Signed-off-by: Ádám László Kulcsár <adam.kulcsar@szteszoftver.hu>
2026-05-07 16:12:31 +09:00

10 lines
106 B
JavaScript

function hello() {
print("Hello world!");
}
function bye() {
print("Bye world!");
}
hello();
bye();