mirror of
https://git.planet-casio.com/Lephenixnoir/JustUI.git
synced 2025-01-04 07:53:37 +01:00
e79ba0056b
This way when I get the record constructors right (which I think I have in my mind now) I can keep around non-regression tests.
29 lines
301 B
Text
29 lines
301 B
Text
null;
|
|
//^ null;
|
|
|
|
1+2;
|
|
//^ 3;
|
|
|
|
let zero = 0;
|
|
zero + 2 * 20 - 8 / 4;
|
|
//^ 38;
|
|
|
|
"hello" + "," + "world";
|
|
//^ "hello,world";
|
|
|
|
if(2 < 4) 8;
|
|
//^ 8;
|
|
|
|
if(2 > 4) 8;
|
|
//^ null;
|
|
|
|
if(2 > 4) 8 else 14;
|
|
//^ 14;
|
|
|
|
let z = 4;
|
|
(z + 10) * 3;
|
|
//^ 42;
|
|
|
|
let helloworld = "Hello, World!";
|
|
len("xyz" + helloworld) + 1;
|
|
//^ 17;
|