aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoelle Maslak <jmaslak@antelope.net>2019-10-04 15:02:13 -0600
committerJoelle Maslak <jmaslak@antelope.net>2019-10-04 15:02:13 -0600
commita40458337c0baf0f4808b09bc94ef6c14ece544b (patch)
tree6a9095b6a812eb82dccb08add99ed1d686410e7c
parentd2d2c2bddb476b8c05826c0e22dca9bbb6f47fff (diff)
downloadperlweeklychallenge-club-a40458337c0baf0f4808b09bc94ef6c14ece544b.tar.gz
perlweeklychallenge-club-a40458337c0baf0f4808b09bc94ef6c14ece544b.tar.bz2
perlweeklychallenge-club-a40458337c0baf0f4808b09bc94ef6c14ece544b.zip
Joelle's solution to 28.2 in P6
-rwxr-xr-xchallenge-028/joelle-maslak/perl6/ch-2.p68
1 files changed, 8 insertions, 0 deletions
diff --git a/challenge-028/joelle-maslak/perl6/ch-2.p6 b/challenge-028/joelle-maslak/perl6/ch-2.p6
new file mode 100755
index 0000000000..4f2338d059
--- /dev/null
+++ b/challenge-028/joelle-maslak/perl6/ch-2.p6
@@ -0,0 +1,8 @@
+#!/usr/bin/env perl6
+use v6;
+
+sub MAIN() {
+ say DateTime.now.hh-mm-ss;
+}
+
+