in reply to Array interpolation in Rakudo
You are seeing the expected behaviour rather than a bug:TODO: explain (non-)interpolation of arrays and hashes once Rakudo gets that right
The {} curly braces within double quotes should allow any expression to be interpolated into the string.my @array = ( 1 , 2 , 3 , 4 ); say "The array is {@array}";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Array interpolation in Rakudo
by moritz (Cardinal) on Aug 10, 2010 at 09:06 UTC |