mirror of
https://github.com/Samsung/escargot.git
synced 2026-06-22 10:01:50 +00:00
7 lines
113 B
JavaScript
Executable file
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);
|