dumb repl added by wismas on Mon Mar 21 13:32:01 2016

(define (poll)
  (cond
    ;; if I already typed something, read without blocking
    ((char-ready?) (eval (read)) (newline)))) 

(define (mainloop)
  ;; if the app needs to remind me of stuff, it can annoy me
  (be-annoying)
  (poll)
  (thread-sleep! 0.1)
  (mainloop))