Barry Walsh
Member since Mar 3, 2011
- Profile: /members/7917-barry-walsh.htm
- URL: http://transfixedbutnotdead.com
- Comments: 1
Recent Blog Comments By Barry Walsh
-
Seven Languages In Seven Weeks By Bruce Tate - What An Adventure
Posted on Mar 3, 2011 at 6:08 AM
Bit late in the day but I thought it be good to see a Perl & Io solutions to the required spec. Perl: my @names = qw/tom dick harry/; sub add_adj { my $adj = shift; map "$_ is so $adj", @_; } my @new_names = add_adj( perlish => @names ); And Io: names := list(&qu... read more »