jrsonnet
refs/heads
master
crates/jrsonnet-formatter/src/tests/functions.jsonnet
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}