Changes between Initial Version and Version 1 of Ticket #1303
- Timestamp:
- 07/01/16 11:52:40 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #1303 – Description
initial v1 4 4 (use srfi-18) 5 5 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)))) 7 7 (thread-start! (lambda () (with-input-from-file "/dev/tty" (lambda () (let lp () (print (cons 'read-from-tty (read))) (lp)))))) 8 8