mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-25 13:05:05 +02:00
Added stubs
This commit is contained in:
parent
634dad667b
commit
e782030d06
1 changed files with 4 additions and 0 deletions
|
@ -2,6 +2,8 @@
|
||||||
(export
|
(export
|
||||||
call-with-input-file
|
call-with-input-file
|
||||||
call-with-output-file
|
call-with-output-file
|
||||||
|
with-input-from-file
|
||||||
|
with-output-from-file
|
||||||
)
|
)
|
||||||
(import (scheme base))
|
(import (scheme base))
|
||||||
(begin
|
(begin
|
||||||
|
@ -9,4 +11,6 @@
|
||||||
(call-with-port (open-input-file string) proc))
|
(call-with-port (open-input-file string) proc))
|
||||||
(define (call-with-output-file string proc)
|
(define (call-with-output-file string proc)
|
||||||
(call-with-port (open-output-file string) proc))
|
(call-with-port (open-output-file string) proc))
|
||||||
|
TODO: with-input-from-file
|
||||||
|
TODO: with-output-from-file
|
||||||
))
|
))
|
||||||
|
|
Loading…
Add table
Reference in a new issue