You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Those are also known as "badly designed languages". Wouldn't it be great to be rid of those practices now that we're actually using a language as good as Clojure? :)
Consider two ways to check what sort of bird we have on hand:
(= bird-type :toucan)
-- one reads this code as "bird type equals toucan"(= :toucan bird-type)
-- you'd read this as "toucan equals bird type"Now while they both do exactly the same thing, the former is the "normal" way to write things and the latter is a Yoda condition
The text was updated successfully, but these errors were encountered: