diff --git a/automated-comments/go/raindrops/entry_signature_changed.md b/automated-comments/go/raindrops/entry_signature_changed.md new file mode 100644 index 000000000..346700685 --- /dev/null +++ b/automated-comments/go/raindrops/entry_signature_changed.md @@ -0,0 +1,4 @@ +Change the signature of the `Convert` function to be `Convert(i int) string`. +Exercism is built on the TDD ([Test Driven Development](http://testfirst.org/about#tdd)) principle. +The tests already exist and define the outward facing interface, as well as the behaviour of the code to be implemented. +Changing the signature breaks the tests. diff --git a/automated-comments/go/raindrops/missing_entry_function.md b/automated-comments/go/raindrops/missing_entry_function.md new file mode 100644 index 000000000..930d1cdfd --- /dev/null +++ b/automated-comments/go/raindrops/missing_entry_function.md @@ -0,0 +1 @@ +Add the function `Convert`, as it is required and currently missing.