mirror of
https://github.com/google/go-jsonnet.git
synced 2026-04-16 10:51:51 +02:00
6 lines
65 B
Jsonnet
6 lines
65 B
Jsonnet
local arr = [function() 42, 42];
|
|
[
|
|
arr[0](),
|
|
arr[1](),
|
|
]
|