Help for this page

Select Code to Download


  1. or download this
    perl -MConfig -MPDL -e "printf("""Perl executable: %%s\nPerl version  
    + : %%vd / $Config{archname}\nPDL version    : %%s\n\n""", $^X, $^V, $
    +PDL::VERSION)";
    
  2. or download this
    D:\>perl -le "print $];printf(""" wtf""")";
    5.038000
    ...
    D:\>perl -le "print $];printf("""wtf""")";
    5.038000
    wtf
    
  3. or download this
    D:\>perl -le "print $];printf(""" wtf""")";
    Can't find string terminator '"' anywhere before EOF at -e line 1.
    ...
    D:\>perl -le "print $];printf("""wtf""")";
    5.040000
    wtf
    
  4. or download this
    D:\>perl -le "print $];printf("" wtf"")";
    Can't find string terminator '"' anywhere before EOF at -e line 1.
    
    D:\>perl -le "print $];printf(""wtf"")";
    Can't find string terminator '"' anywhere before EOF at -e line 1.
    
  5. or download this
    D:\>perl -le "print $];printf("" wtf"")";
    5.040000
    ...
    D:\>perl -le "print $];printf(""wtf"")";
    5.040000
    wtf