;; The first three lines of this file were inserted by DrScheme. They record metadata
;; about the language level of this file in a form that our tools can easily process.
#reader(lib "htdp-beginner-reader.ss" "lang")((modname 13.2.2) (read-case-sensitive #t) (teachpacks ()) (htdp-settings #(#t constructor repeating-decimal #f #t none #f ())))
; Exercise 13.2.2
; is-basketball? : string(game) -> boolean
(check-expect (is-basketball? "basketball") true)
(check-expect (is-basketball? "cricket") false)

(define (is-basketball? game)
  ; game a string
  ; "basketball" another string
  (string=? game "basketball")
  )