tracks/perl6/exercises/two-fer/Example.pm6 in trackler-2.2.1.95 vs tracks/perl6/exercises/two-fer/Example.pm6 in trackler-2.2.1.96
- old
+ new
@@ -5,10 +5,10 @@
The ':ver<>' adverb defines the version of a module or class.
The version is checked in the test suite to ensure the exercise
and test suite line up. If the test is updated, it will indicate
to others who test your code that some tests may no longer pass.
)
-unit module TwoFer:ver<1>;
+unit module TwoFer:ver<2>;
sub two-fer ($name = ‘you’) is export {
“One for $name, one for me.”
}