- or download this
my $spec = {
'Parameters' => [
...
],
'Response' => 'scalar',
};
- or download this
my @params = $thing->{'Parameters'};
...
my $spec = $params[$index + 1];
# do something from here...
}
- or download this
define_method 'foo' => {
'Parameters' => [
...
},
]
};