home | blog
Perl 6 screencast - part 2 - arraysPublished on 2010.07.20 at 18:54:38Tags: Perl 6, Perl, screencast, arrays
Direct link to the Perl 6 arrays screencast See more Perl 6 entries.
Perl 6 Code examples
use v6;
my @names = "Foo", "Bar", "Moo";
say @names[];
say "Hello {@names} how are you?";
say "Hello { join('; ', @names) } how are you?";
use v6;
my @names =
blog comments powered by Disqus
|