Initial commit from the 2013 with minor fixes. From now and then,
[perlbook.git] / l20.pl
blob354fb2fc143eabf4169271cd3d8959039c898a56
1 #!/usr/bin/perl
2 use warnings;
3 use strict;
5 use constant
7 SPEED_OF_LIGHT => 299_792_458,
8 AVERAGE_DISTANCE_TO_MOON => 384400000,
9 };
11 print "Свет от земли до луны дойдет за " .
12 AVERAGE_DISTANCE_TO_MOON/SPEED_OF_LIGHT . "сек\n";