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