Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    
    my $march = strftime("%B", 0, 0, 0, 1, 2, 123);
    say $march;
    
  2. or download this
    D:\pscrpt>perl try.pl de_DE.UTF-8
    Use of uninitialized value in say at try.pl line 7.
    de_DE.UTF-8:
    March
    
  3. or download this
    D:\>perl -MPOSIX -wle "$loc = POSIX::setlocale( &POSIX::LC_ALL, 'de' )
    +; print $loc;"
    Use of uninitialized value $loc in print at -e line 1.
    
  4. or download this
    C: March (5 bytes)