From 8a5303df8f0b3b71e7272a6bf5a2856467fe4bd1 Mon Sep 17 00:00:00 2001 From: Elena Machkasova Date: Sun, 14 Jun 2015 11:11:39 -0500 Subject: [PATCH] replaced "foo" examples with "hello" This is more novice-friendly --- src/koans/01_equalities.clj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/koans/01_equalities.clj b/src/koans/01_equalities.clj index ed10b7b..8f76176 100644 --- a/src/koans/01_equalities.clj +++ b/src/koans/01_equalities.clj @@ -24,13 +24,13 @@ (= __ (not (= 1 nil))) "Strings, and keywords, and symbols: oh my!" - (= __ (= "foo" :foo 'foo)) + (= __ (= "hello" :hello 'hello)) "Make a keyword with your keyboard" - (= :foo (keyword __)) + (= :hello (keyword __)) "Symbolism is all around us" - (= 'foo (symbol __)) + (= 'hello (symbol __)) "When things cannot be equal, they must be different" (not= :fill-in-the-blank __))