Files
mgmt/examples/lang/iteration1.mcl
2019-02-04 05:03:37 -05:00

22 lines
396 B
Plaintext

# single resource
print "name" {}
# single resource, defined by list variable
$names = ["hey", "there",]
print $names {
Meta:autogroup => false,
}
# multiples resources, defined by list
print ["hello", "world",] {
Meta:autogroup => false,
Depend => Print[$names],
}
$morenames = ["wow", "cool", "amazing",]
print $morenames {
Meta:autogroup => false,
}
Print[$names] -> Print[$morenames]