repo.or.cz
/
perlbook.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit from the 2013 with minor fixes. From now and then,
[perlbook.git]
/
l20.pl
blob
354fb2fc143eabf4169271cd3d8959039c898a56
1
#!/usr/bin/perl
2
use
warnings
;
3
use
strict
;
4
5
use
constant
6
{
7
SPEED_OF_LIGHT
=>
299
_792_458
,
8
AVERAGE_DISTANCE_TO_MOON
=>
384400000
,
9
};
10
11
print
"Свет от земли до луны дойдет за "
.
12
AVERAGE_DISTANCE_TO_MOON
/
SPEED_OF_LIGHT
.
"сек
\n
"
;