Joy and Marianna have written two different sets of code to accomplish the same goal of helping a caterer direct people with dietary restrictions to a menu item that works for them. Look at the code below.

Joy’s Code:

(define (entree diet) (cond [(string=? diet "gluten-free") salmon] [(string=? diet "kosher") salmon] [(string=? diet "lactose-int") salmon] [(string=? diet "nut allergy") lasagna] [(string=? diet "vegan") stir-fry] [(string=? diet "vegetarian") stir-fry] [else (text "unknown diet" 20 "red")])

Marianna’s Code:

(define (entree diet) (cond [(or (or (string=? diet "gluten-free") (string=? diet "kosher")) (string=? diet "lactose-int")) salmon] [(or (string=? diet "vegan") (string=? diet "vegetarian")) stir-fry] [else (text "unknown diet" 20 "red")])

Whose method do you like better? Why?

These materials were developed partly through support of the National Science Foundation, (awards 1042210, 1535276, 1648684, and 1738598). CCbadge Bootstrap by the Bootstrap Community is licensed under a Creative Commons 4.0 Unported License. This license does not grant permission to run training or professional development. Offering training or professional development with materials substantially derived from Bootstrap must be approved in writing by a Bootstrap Director. Permissions beyond the scope of this license, such as to run training, may be available by contacting contact@BootstrapWorld.org.