Skip to content

Commit

Permalink
update starter file
Browse files Browse the repository at this point in the history
  • Loading branch information
tasxatzial committed Dec 2, 2024
1 parent 03ceda7 commit 4800d9a
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions exercises/practice/allergies/src/allergies.clj
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
(ns allergies)

(defn allergies [] ;; <- arglist goes here
;; your code goes here
)
(defn allergic-to?
"Returns true if the score indicates an allergy to the allergen; otherwise, returns false"
[score allergen]
;; function body
)

(defn allergic-to? [] ;; <- arglist goes here
;; your code goes here
)
(defn allergies
"Returns all allergens associated with the score"
[score]
;; function body
)

0 comments on commit 4800d9a

Please sign in to comment.