Am Dienstag, 21. April 2015 14:44 CEST, "Mattes" <r.mat...@mh-freiburg.de> 
schrieb: 
 
>  (define pair-or-rational? (thing)
>     (or 
>        (pair? thing)
>        (rational? thing)))

As Orm Finnenahl correctly observed I unconsciously slipped into
Common Lisp :-/
Here's the Scheme variant:

 (define (pair-or-rational? thing)
   (or
     (pair? thing)
     (rational? thing)))

Cheers, RalfD


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to