diff options
| -rw-r--r-- | challenge-100/mark-anderson/raku/ch-1.raku | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-100/mark-anderson/raku/ch-1.raku b/challenge-100/mark-anderson/raku/ch-1.raku index b9e82798ce..3caea93879 100644 --- a/challenge-100/mark-anderson/raku/ch-1.raku +++ b/challenge-100/mark-anderson/raku/ch-1.raku @@ -24,5 +24,5 @@ multi fun-time($T) multi fun-time($T where .ends-with("am"|"pm", :i)) { - Time::Piece.strptime("$T", "%r").strftime("%R"); + Time::Piece.strptime($T, "%r").strftime("%R"); } |
