mes: Add reverse-list->string.
* module/srfi/srfi-13.mes (reverse-list->string): New function.
This commit is contained in:
parent
efdae700b5
commit
fc0e0a732f
|
@ -85,3 +85,5 @@
|
|||
(if (null? lst) #f
|
||||
(if (pred (car lst)) i
|
||||
(loop (cdr lst) (1- i)))))))
|
||||
|
||||
(define reverse-list->string (compose list->string reverse))
|
||||
|
|
Loading…
Reference in a new issue