Hi Niels,

> I do not remember if you can use $foo->{'bar'} in a string
> interpolation, but I guess are about to find out. :)

  $ cat test.pl
  use strict;
  my $foo = { 'bar' => 'Yes.' };
  print "Can we use \$foo->{'bar'} in a string interpolation? $foo->{'bar'}\n";

  $ perl test.pl
  Can we use $foo->{'bar'} in a string interpolation? Yes.

TIL :)

> Thanks, looks good to me with a quick review.

I'll give it a whirl!
 

Best wishes,

-- 
      ,''`.
     : :'  :     Chris Lamb
     `. `'`      la...@debian.org / chris-lamb.co.uk
       `-

Reply via email to