Help for this page

Select Code to Download


  1. or download this
    (select y from generate_series(18,23) y)
    (select s from generate_series(1,20) s)
    
  2. or download this
    (18..23)
    (1..20)
    
  3. or download this
    for my $s (1..20) {
        if ($s == any(18..23) ) {
            print $s;
        }
    }
    
  4. or download this
    $h=$ENV{HOME};my@q=split/\n\n/,`cat $h/.quotes`;$s="$h/."
    ."signature";$t=`cat $s`;print$t,"\n",$q[rand($#q)],"\n";