Viewing profile — siqu
siqu
HN member- Joined
- Fri, Apr 19, 2019, 5:39 PM UTC
- HN karma
- -3
- Public activity
- 1 items
- HN profile
- View on Hacker News ↗
About siqu
No profile information was provided.
Recent public activity
-
comment
Comment #19701400
(define (get) (get1 (quote ()) (read)))(define (get1 b r) (if (eof-object? r) (reverse b) (get1 (cons r b) (read))))(define (put) (put1 (quote ()) (read-char)))(define (put1 b r) (…