mirror of
https://github.com/google/go-jsonnet.git
synced 2026-04-16 02:41:27 +02:00
13 lines
111 B
Jsonnet
13 lines
111 B
Jsonnet
local array = [
|
|
'bar',
|
|
1,
|
|
1.42,
|
|
-1,
|
|
false,
|
|
true,
|
|
];
|
|
|
|
{
|
|
array: std.manifestTomlEx(array, ' '),
|
|
}
|