This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
===========================PERL 6====================== | |
seconds; | |
sub seconds | |
{ | |
say "Please enter number of seconds: "; | |
my $raw = get.Int; | |
my $sec = $raw; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
days-HMS( 61 ); | |
sub days-HMS (Int $seconds ) | |
{ | |
my $minutes = $seconds div 60; | |
my $sec-left = $seconds mod 60; | |
say "$minutes $sec-left; | |
=begin comment |