in reply to Calling a variable value as a variable
This:
may not be what you want.my ($blu, $red, $grn, $ylw) = (@bytes[0], @bytes[12], @bytes[56], @byt +es[120]);
is the same. I'm not sure that is what you want either!my ($blu, $red, $grn, $ylw) = ($bytes[0], $bytes[12], $bytes[56], $byt +es[120]);
|
|---|