Help for this page

Select Code to Download


  1. or download this
    say "$alef$alpha$omega";
    
  2. or download this
    say STDOUT "$alef$alpha$omega"
    
  3. or download this
    use 5.018;
    use diagnostics;
    use utf8; # this tells perl that the source code is in utf-8
    use open qw( :encoding(utf-8) :std ); # perl will try to open everythi
    +ng in utf-8 mode by default