mirror of
https://github.com/google/go-jsonnet.git
synced 2025-12-24 18:41:07 +01:00
4 lines
69 B
Jsonnet
4 lines
69 B
Jsonnet
local x = 1;
|
|
local foo(x=2, y=3, z=x) = {x: x, y: y, z: z};
|
|
foo(y=x)
|