-
-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
03ceda7
commit 4800d9a
Showing
1 changed file
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
) |