Is it possible to give some argument to a map function? The method below want not work:
(define (add-tail tl str)
(append str tl))
(map (add-tail "-Schwanz") '("Hund" "Katze" "Pinguin"))
Now I do this so:
(map add-tail (dup "-Schwanz" 3 true) '("Hund" "Katze" "Pinguin"))
But I have a feeling there should be a simpler way.
You need to pass map a function. You can do that with curry:
(map (curry add-tail (dup "-Schwanz" 3 true)) '("Hund" "Katze" "Pinguin"))
Jeff meant to say this:
(map (curry add-tail "-Schwanz") '("Hund" "Katze" "Pinguin"))
Was he trying to append "-Schwanz" or "-Schwanz-Schwanz-Schwanz"?
one "Schwanz" (tail in German) should be enough for each animal :)
Le pido perdon. Hablo solamente ingles y espanol. Y lisp ;)
Thanx! Now it works.
Btw, Spanish is very useful for me to name functions. I can define something like "buscar", "cargar" or "destripar" and be sure, that these symbols are not protected.
You can rename all function inside Newlisp ;-) I did once made a Dutch newlisp..
..Awfull ;-)