Help for this page

Select Code to Download


  1. or download this
    DateTime tomorrow = DateTime->Now->plusDelta( DateTime::Delta->days( 1
    + ) );
    
  2. or download this
    sub plusDelta( 
       my( $self, $delta ) = @_;
    
       return bless \( $self += $delta ), __PACKAGE__;
    }