mirror of
https://github.com/google/go-jsonnet.git
synced 2025-12-25 11:01:09 +01:00
12 lines
137 B
Jsonnet
12 lines
137 B
Jsonnet
local unknown = "a" + "b";
|
|
local obj = if true then
|
|
{
|
|
[unknown]: 42
|
|
}
|
|
else
|
|
{
|
|
foo: [1]
|
|
}
|
|
;
|
|
obj.bar[0]
|