debug added by mario-goulart on Fri Jan 24 16:38:26 2014

(define (debug fmt . args)
  (apply printf (cons (string-append fmt "\n") args)))

;; Usage examples:
;; (debug "foo")
;; (debug "foo ~a" 123)