initial commit
[urisagit/Sort-Maker.git] / exp / map_context.pl
CommitLineData
7468c584 1#!/usr/local/bin/perl -w
2
3use strict ;
4
5sub bar {
6 print "ARRAY\n" if wantarray ;
7 my @a = ( qw( a d g ) ) ;
8
9 return @a ;
10}
11
12my ($x) ||= map { bar() } 1 ;
13
14print "$x\n" ;