From 33f8d79e2054f8787cb952083c73fa9ee5ead901 Mon Sep 17 00:00:00 2001 From: "chao.fang" Date: Mon, 30 May 2022 20:57:37 -0400 Subject: [PATCH] message here --- 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))