For-Each

(for-each procedure list) -> values

Very similar to map, this applies procedure to each element of list in turn. For-each only returns #f, the procedure used may have other results.

Example:

>> (for-each show (list "Abel" "Bob" "Charlie" "\n"))
"Abel""Bob""Charlie""
":: #f