mirror of
https://github.com/google/go-jsonnet.git
synced 2025-12-24 10:31:05 +01:00
13 lines
111 B
Jsonnet
13 lines
111 B
Jsonnet
local array = [
|
|
'bar',
|
|
1,
|
|
1.42,
|
|
-1,
|
|
false,
|
|
true,
|
|
];
|
|
|
|
{
|
|
array: std.manifestTomlEx(array, ' '),
|
|
}
|