escargot/tools/debugger/tests/do_eval.js
Gergo Csizi 9f0574a8bd Add p command for the debugger
Signed-off-by: Gergo Csizi gergocs@inf.u-szeged.hu
2021-11-22 10:14:30 +09:00

7 lines
113 B
JavaScript
Executable file

let a = 42;
let b = "Alma";
let c = undefined;
let d = function(){ return 1; }
let e = {a:"a", b:10};
print(a);