mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
Implement restart in escargot and python debugger. Also add debugger test. Signed-off-by: Ádám László Kulcsár <adam.kulcsar@szteszoftver.hu>
10 lines
106 B
JavaScript
10 lines
106 B
JavaScript
function hello() {
|
|
print("Hello world!");
|
|
}
|
|
|
|
function bye() {
|
|
print("Bye world!");
|
|
}
|
|
|
|
hello();
|
|
bye();
|