#332
A Test of character
 

Difficulty:Elementary
Topics:String Character


Create a function to test whether a string contains a character (in the form of string).
test not run
(= (__ "Hello World" "W") true)
test not run
(= (__ "Hello World" "w") false)
test not run
(= (__ "Trim a cat" "e") false)
test not run
(= (__ "Budi beli bola loba" " ") true)


Code which fills in the blank: