Help for this page

Select Code to Download


  1. or download this
    $ perl -E 'say for "qwe", "qwe\n"'
    qwe
    qwe
    
  2. or download this
    $ perl -E 'say "|$_|" for "qwe", "qwe\n"'
    |qwe|
    |qwe
    |
    
  3. or download this
        my %big_image = map +(fc($_) => 1), $opt{big} ? @{$opt{big}} : ();
        for my $cross_file (@cross_files) {
    ...
            my $class = 'svg_group';
            $class .= ' right' unless exists $big_image{fc $text};
        }
    
  4. or download this
    $ perl -E 'my %opt = ( big => [] ); say $opt{big}'
    ARRAY(0x600003a90)
    
    $ perl -E 'my %opt = ( big => [] ); say 0+@{$opt{big}}'
    0