Basic scheme function, filter the objects in list ls by function fn. e.g. (filter even? (list 0 1 2 3) -> '(0 2)
simple scheme functions to concat the strings in ls (ls must contain only strings)
The following functions from PLEAC (guile version thereof of course).
or define a utility function for this