jrsonnet
refs/heads
master
crates/jrsonnet-formatter/src/tests/operators.jsonnet
1{2 arithmetic: 1 + 2 * 3 - 4 / 2,3 comparison: 1 < 2 && 3 > 2 || false,4 string_concat: 'hello' + ' ' + 'world',5 object_concat: { a: 1 } + { b: 2 },6 array_concat: [1, 2] + [3, 4],7}