I fail at threads added by anttih on Thu Jun 21 21:07:20 2012

;; csc this-file.scm && ./this-file

(require-extension srfi-18 posix)

(define mythread (make-thread (lambda () (print "in your thread!"))))

(thread-start! mythread)

(print (read-line))