I noticed that PostgreSQL and Perl 6 have the same syntax for junctions (well, at least any)
samv=# select s from generate_series(1,20) s where s = any (select y f +rom generate_series(18,23) y) ; s ---- 18 19 20 (3 rows)
This year's perl:
perl -MPerl6::Junction=any -le 'for my $s (1..20) { if ($s == any(18..23) ) { print $s } }'
$h=$ENV{HOME};my@q=split/\n\n/,`cat $h/.quotes`;$s="$h/." ."signature";$t=`cat $s`;print$t,"\n",$q[rand($#q)],"\n";
In reply to Perl 6 Junctions and Postgres SQL by mugwumpjism
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |