git @ Cat's Eye Technologies
The-Dipple
/
8b63285
Tiny example of reading an S-expression in from stdin.
Chris Pressey
1 year, 10 months ago
1 changed file(s) with
3 addition(s)
and
0 deletion(s)
.
Raw diff
Collapse all
Expand all
+3
-0
scheme/read-sexpr-from-stdin.scm
less
more
0
(let* ((port (current-input-port))
1
(value (read port)))
2
(display value))