明日や昨日の日付を計算する(Date::Simple) - Perl

明日、また昨日の日付を計算したい。 Date::Simpleモジュールを使用すると、非常に簡潔に記述することができる。以下のプログラムの実行には、Date::Simpleモジュールのインストールが必要となっている。

サンプル

;#
;#昨日、明日を求める
;#

use Date::Simple;

my $date      = Date::Simple->new('1979-10-05');
my $tomorrow  = $date->next;
my $yesterday = $date->prev;

print "明日:$tomorrow\n";
print "昨日:$yesterday\n";

実行結果

明日:1979-10-06
昨日:1979-10-04