From 6cdb26f6781a176b1e47a2e6a3a81aea8b6349d9 Mon Sep 17 00:00:00 2001 From: rbasso Date: Tue, 20 Sep 2016 23:53:09 +0900 Subject: [PATCH] space-age: Move hints to HINTS.md --- exercises/space-age/HINTS.md | 4 ++++ exercises/space-age/src/SpaceAge.hs | 3 --- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 exercises/space-age/HINTS.md diff --git a/exercises/space-age/HINTS.md b/exercises/space-age/HINTS.md new file mode 100644 index 000000000..37fd21ea6 --- /dev/null +++ b/exercises/space-age/HINTS.md @@ -0,0 +1,4 @@ +## Hints + +To complete this exercise, you need to create the data type `Planet` +and implement the `ageOn` function. diff --git a/exercises/space-age/src/SpaceAge.hs b/exercises/space-age/src/SpaceAge.hs index 0d552c84b..ef0e1b295 100644 --- a/exercises/space-age/src/SpaceAge.hs +++ b/exercises/space-age/src/SpaceAge.hs @@ -1,6 +1,3 @@ module SpaceAge (Planet(..), ageOn) where --- The task is to create the data type `Planet` --- and implement the function `ageOn`. - ageOn = undefined