git.delta.rocks / jrsonnet / refs/heads / master

difftreelog

source

crates/jrsonnet-formatter/src/tests/operators.jsonnet189 Bsourcehistory
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}