Empty-String?

(empty-string? string) -> boolean

Returns true if the given string is empty, otherwise false.

Example:

>> (define a (make-string))
:: ""
>> (empty-string? a)
:: #t