tracks/perl5/exercises/bob/.meta/solutions/Bob.pm in trackler-2.2.1.131 vs tracks/perl5/exercises/bob/.meta/solutions/Bob.pm in trackler-2.2.1.132

- old
+ new

@@ -1,8 +1,10 @@ # Declare package 'Bob' with version -package Bob 3; +package Bob 4; use strict; use warnings; +use Exporter 'import'; +our @EXPORT_OK = qw(hey); sub hey { my ($text) = @_; if (uc($text) eq $text && $text =~ /\p{Uppercase}/) { return 'Calm down, I know what I\'m doing!' if $text =~ /\?\s*$/;