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

difftreelog

source

crates/jrsonnet-formatter/src/tests/functions.jsonnet135 Bsourcehistory
1{2  simple(x):: x * 2,3  with_default(x, y=10):: x + y,4  multiline(5    a,6    b,7    c,8  ):: a + b + c,9  called: self.simple(5),10}