mes: Add reverse-list->string.

* module/srfi/srfi-13.mes (reverse-list->string): New function.
This commit is contained in:
Jan Nieuwenhuizen 2017-11-20 06:49:27 +01:00
parent efdae700b5
commit fc0e0a732f
1 changed files with 2 additions and 0 deletions

View File

@ -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))