1+2
2+3*4
(2+3)*4
2*3+4
2+3*4==5/6-7
1*!!true-2
6/2*(1+2)
4-2-1
2^3^2
7//2
-8//3
7.5//2
7%4
-7%4
7%-3
-7%-3
5%3
2^-1
2^10
0.1+0.2
1/3
1/0
-1/0
0/0
2.5*4
999*999
"Hello" + (4+4) + "World"
"a"+1+true
"5"-2
"abc"*2
"5"*"3"
"foo"+"bar"
"foo" + [1,2]
[1,2] + ""
[1,2] + 1
[1,2,3] + 1
"" + [1,2,3]
true+true
null+1
"Hello".length
"".length
[1,2].length
["a","b","c"].length
"foo".length == 3
2 > 1
2 <= 1
"abc" < "abd"
5 < "10"
"5" < "10"
"b" > 2
2 == 2
1 == "1"
0 == false
"1" == true
1 != 2
"" == false
"" == 0
[5] == 5
[] == 0
[] == ""
[1,2] == "1,2"
0 && 5
2 && 3
"foo" && "bar"
"" && "x"
1 || 2
0 || "x"
"foo" ? 1 : 2
"" ? 1 : 2
"a" ? "b" : "c"
0 ? 1 : 2
"foo" ?: "bar"
"" ?: "x"
!true
!!0
!""
!"abc"
!5
-(-5)
2 - -3
-2^2
2^-1+1
[1,2,3][1]
[1,2,3][0+1]
[1,2,3][2]
[1,2,3][3]
[1,2,3][-1]
[[1,2],[3,4]][1][0]
["a","b"][true]
[1,2,3].length
[{a:1},{a:2}][.a == 2]
[{a:1},{a:2}][.a > 1]
[{a:1,b:2},{a:3}][.a == 1].b
[1,2,3,4][. > 1]
"bar" in "foobartek"
"baz" in "foobartek"
"bar" in ["foo","bar","tek"]
"baz" in ["foo","bar","tek"]
2 in [1,2,3]
"2" in [1,2,3]
{foo: "bar"}.foo
{a: 1, b: 2}.a
{a: {b: "c"}}.a.b
{a: {b: [1,2,3]}}["a"].b[2]
{a:1,b:2}["b"]
"foo".length + {foo: "bar"}.foo.length
(	2
+
3) *
4


2/2
1+2*3-4/2
"foo" && 6 >= 6 && 0 + 1 && true
!foo
foo
foo.bar
foo.bar.baz
a[.b]
foo.bar[.tek == "baz"]
[1,2] ? 1 : 2
{} ? 1 : 2
[] && "x"
"x" || []
9foo
1 2
2++2
"unterminated
foo.
[1,2
{a:1
1..2
foo[.bar == 1
foo ? 1 :
[1,2,3][. > 1
&
2 & 2
foo bar
1e3
"foo"|missing
5|dbl
5|dbl|dbl
"a"|dbl
[5]|dbl
[1,2,3]|first
5|first
[]|first
"x"|concatWith("y")
1 ? 2 : 3 ? 4 : 5
({a:1}).a
"a\"b".length
"'it's".length
["a","b"]["1"]
["a","b"]["length"]
["a","b"]["x"]
{1: "one"}[1]
{true: "y"}[true]
0 * -1
[1,0/0,3][1]
[0/0][0] == 0/0
(2>1) ? "yes" : "no"
{a:1}[true]
"hello"[1]
"hello"["length"]
""[0]
!(1==2)
2 in "1,2"
2 in [1,"2"]
{a:{b:{c:42}}}.a.b.c
{a: {b: "x"}}["a"]["b"]
({a:1}).a + {a:2}.a
5|dbl+1
foo|dbl
[{a:[1,2]},{a:[3,4]}][.a[1] == 4]
5|concatWith(3)
[{a:1},{a:2},{a:3}][.a >= 2]
[{a:1,b:[10,20]},{a:2,b:[30]}][.b[0] == 10]
"foo" in "barfoo baz"
0.5 * "4"
"a" < "b" && 1 < 2
