From 8d32e0296e9fee8f1cc3bb592a4bab9e5a0b33a3 Mon Sep 17 00:00:00 2001 From: azul Date: Fri, 4 Oct 2019 08:28:23 +0200 Subject: [PATCH] hello world: make topics match the content This used to be `println` which actually occures nowhere in the excercise. Change this to: * `strings` - because the function returns a string and we compare strings * `test_driven_development` - as this is the first excercise and people learn the red, green flow. Both topics are taken from https://github.com/exercism/problem-specifications/blob/master/TOPICS.txt This also addresses #529 for `hello world`. --- config.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index 86e69a96c..7b1bbc8e0 100644 --- a/config.json +++ b/config.json @@ -16,7 +16,8 @@ "unlocked_by": null, "difficulty": 1, "topics": [ - "println" + "strings", + "test_driven_development" ] }, {