Help for this page

Select Code to Download


  1. or download this
    perl -e "print (localtime)[6];"
    syntax error at -e line 1, near ")["
    Execution of -e aborted due to compilation errors.
    
  2. or download this
    perl -e "my $test = (localtime)[6];print $test"
    5
    
  3. or download this
    perl -e "print scalar (localtime)[6]"
    syntax error at -e line 1, near ")["
    Execution of -e aborted due to compilation errors.