mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
19 lines
306 B
Puppet
19 lines
306 B
Puppet
# 18 lines 14 code 3 comments 1 blanks
|
|
class example::class(
|
|
$param1,
|
|
$param2=2,
|
|
$param3=undef, # pass this one
|
|
) {
|
|
# comments are really simple
|
|
some::resource {
|
|
'bar':
|
|
param1 => param2,
|
|
# comments here too
|
|
param3 => param4;
|
|
}
|
|
|
|
some::other::resource {
|
|
'baz':
|
|
}
|
|
}
|