[plt-scheme] string-contains
> In this case, either of the two following requires will work:
>
> (require (lib "13.ss" "srfi"))
> (require (lib "string.ss" "srfi" "13"))
>
> Note that the first form won't work inside a module that also imports
> mzscheme, as SRFI 13 defines some identifiers provided by mzscheme.
> Either require it with a prefix or use the second require form, which
> renames the identifiers in question.
Another option is to use the 'only' require form to selectively pull out
string-contains:
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(module test-only-require mzscheme
(require (only (lib "13.ss" "srfi")
string-contains))
(printf "~a~n" (string-contains "hello" "ll")))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Best of wishes!