Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scheme 0.18 KB | None | 0 0
  1. (define (load-input input-port lst)
  2.     ( let ((line (read-line input-port)))
  3.         (cond ((eof-object? line) lst)
  4.             (else (load-input input-port (cons line lst))))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement