go-jsonnet/testdata/builtin_manifestTomlEx_array.jsonnet
Jayme Bird 8abb4aa639 feat: implementation of manifestTomlEx in Go
Co-authored-by: Wojciech Kocjan <wojciech@kocjan.org>
2022-10-19 04:50:41 +01:00

13 lines
111 B
Jsonnet

local array = [
'bar',
1,
1.42,
-1,
false,
true,
];
{
array: std.manifestTomlEx(array, ' '),
}