(define (most-common-word str)
(let (wordslist str-split str " ")))
I am trying to do a inner variable of lists of strings. but I get the error "bad syntax".
I looked for answers here but the things I changed, didn't help.
str-split returns a list of strings with " " the separator.
thanks.