clojurecademy / 4Clojure

4Clojure problems with a few differences
https://clojurecademy.com/courses/17592186045426/learn/overview
8 stars 2 forks source link

3. Intro to Strings #14

Closed wviana closed 7 years ago

wviana commented 7 years ago

I've entered the code

(ns intro-to-strings)

;;Write your code under this comment, it will fill the blank.
(= "HELLO WORLD" (.toUpperCase "hello world"))

When I do run using REPL I get a true response. When a I Click RUN I get a

  1. instruction failed.

(= (= "HELLO WORLD" (.toUpperCase "hello world")) (.toUpperCase "hello world")) -> This form does not return true!

ertugrulcetin commented 7 years ago

@wviana basically you just need to type just "HELLO WORLD" NOT the whole question (= "HELLO WORLD" (.toUpperCase "hello world"), your answer will be filled in the blank

wviana commented 7 years ago

@ertugrulcetin Thank you very much.

I think it could be better explained in the first lessons of this type.

ertugrulcetin commented 7 years ago

@wviana yeah you are right! There were people who had same problem as well. I'll fix this, thank you so much for reaching out!