From 4a8a571d66cfa43eec433cd47a33f2ab4aec1c2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Alves?= Date: Sat, 2 Oct 2021 21:27:03 +0100 Subject: [PATCH] Test done! --- src/training_day.clj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/training_day.clj b/src/training_day.clj index f5ac2e69..a74a6a40 100644 --- a/src/training_day.clj +++ b/src/training_day.clj @@ -1,11 +1,11 @@ (ns training-day) -(def answer ":(") +(def answer 42) (def hai "O HAI!") (defn square [x] - ":(") + (* x x)) (defn average [a b] - ":(") + (/ (+ a b) 2))