(define (osc-test n) (display "dsfdsfs")(newline) (osc-destination "osc.udp://localhost:4444") (if (zero? n) 0 (osc-test (- n 1)))) (osc-test 999)