Changes between Initial Version and Version 1 of Ticket #1303


Ignore:
Timestamp:
07/01/16 11:52:40 (8 years ago)
Author:
sjamaan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1303 – Description

    initial v1  
    44(use srfi-18)
    55
    6 (thread-start! (lambda () (let lp () (print "spinning") (thread-sleep! 0.2))))
     6(thread-start! (lambda () (let lp () (print "spinning") (thread-sleep! 0.2) (lp))))
    77(thread-start! (lambda () (with-input-from-file "/dev/tty" (lambda () (let lp () (print (cons 'read-from-tty (read))) (lp))))))
    88