Help for this page

Select Code to Download


  1. or download this
    ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
  2. or download this
    @time = localtime(time);
  3. or download this
    ($one, $two, @three, $four) = ('one', 'two', 'three', 'four');
  4. or download this
    sub do_stuff {
        my ($foo, $bar) = @_;
    }