mirror of
https://github.com/google/go-jsonnet.git
synced 2025-09-01 03:41:34 +02:00
This is mostly so that I can add it as the test module to be used in the bazel registry presubmit
9 lines
133 B
Jsonnet
9 lines
133 B
Jsonnet
local Person(name='Alice') = {
|
|
name: name,
|
|
welcome: 'Hello ' + name + '!',
|
|
};
|
|
{
|
|
person1: Person(),
|
|
person2: Person('Bob'),
|
|
}
|