ucd_aggie_grad
New member
my $request = {
Service => 'this service',
Operation => 'add record',
Version => 'latest',
};
At first, it seems that the variable $request is a scalar variable. But on closer look, it seems to be a hash variable. Which is it?
Secondly, if I were to construct a variable ($request) with two arrays, say
@action = ("Service", "Operation", "Version");
@value = ("this service", "add record", "latest");
how would I go about doing so?
Thanks!
Service => 'this service',
Operation => 'add record',
Version => 'latest',
};
At first, it seems that the variable $request is a scalar variable. But on closer look, it seems to be a hash variable. Which is it?
Secondly, if I were to construct a variable ($request) with two arrays, say
@action = ("Service", "Operation", "Version");
@value = ("this service", "add record", "latest");
how would I go about doing so?
Thanks!