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

difftreelog

source

crates/jrsonnet-formatter/src/tests/conditionals.jsonnet115 Bsourcehistory
1{2  simple: if true then 'yes' else 'no',3  nested: if 1 > 0 then4    if 2 > 1 then 'a' else 'b'5  else6    'c',7}