tracks/perl6/exercises/hello-world/Example.pm6 in trackler-2.1.0.33 vs tracks/perl6/exercises/hello-world/Example.pm6 in trackler-2.1.0.34

- old
+ new

@@ -1,8 +1,17 @@ +#`( + This is a 'stub' file. It's a little start on your solution. + It is not a complete solution though; you will have to write some code. + + 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 HelloWorld:ver<2>; sub hello is export { 'Hello, World!' }