mirror of
https://github.com/google/go-jsonnet.git
synced 2026-04-13 09:21:00 +02:00
6 lines
93 B
Jsonnet
6 lines
93 B
Jsonnet
local foo = if true then {"foo": "bar"} else ["f", "o", "o"];
|
|
[
|
|
foo[0],
|
|
foo["foo"]
|
|
]
|