aboutsummaryrefslogtreecommitdiffstats
path: root/info.toml
diff options
context:
space:
mode:
Diffstat (limited to 'info.toml')
-rw-r--r--info.toml8
1 files changed, 8 insertions, 0 deletions
diff --git a/info.toml b/info.toml
index 956fb43..d627ebc 100644
--- a/info.toml
+++ b/info.toml
@@ -11,3 +11,11 @@ path = "exercises/variables/variables2/main.go"
mode = "compile"
hint = """
It is missing a symbol used to declare and initialize variables."""
+
+[[exercises]]
+name = "functions1"
+path = "exercises/functions/functions1/main.go"
+mode = "compile"
+hint = """
+The main function is calling another function that it expects to exist.
+It expects a function named `call_me` to exist and receive no arguments."""