Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use 5.011;
    
    ...
        print join("\n", @html);
        }
    __END__
    
  2. or download this
    C:\Users\tblaz\Documents\evelyn>type 2.cyr.pl
    #!/usr/bin/perl -w
    ...
    
        print join("\n", @html);
            }
    
  3. or download this
    C:\Users\tblaz\Documents\evelyn>perl 1.hello.cyr.pl
    Привет
    
  4. or download this
    #!/usr/bin/perl -w
    use 5.016;
    use utf8::all;
    ...
    
    say "Привет";
    __END__