show/hide this revision's text 2 added 220 characters in body

R6RS Scheme:

(call-with-input-file "filename" get-string-all)

(call-with-output-file "filename" 
  (lambda (p) (put-string p "text")))

(call-with-port (open-input-file "filename") get-bytevector-all)

(call-with-port 
  (open-output-file "filename") 
  (lambda (p) (put-bytevector p bytes)))
    Post Made Community Wiki by Community
show/hide this revision's text 1

Scheme:

(call-with-input-file "filename" get-string-all)