Start of work on the new IO system.
This commit is contained in:
parent
0b693a7103
commit
cebab86485
|
@ -0,0 +1,8 @@
|
|||
|
||||
(library (io-prims)
|
||||
(export )
|
||||
(import
|
||||
(io-spec)
|
||||
(except (ikarus)))
|
||||
|
||||
)
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
(library (io-spec)
|
||||
(export )
|
||||
(import
|
||||
(except (ikarus) ))
|
||||
|
||||
(define-struct $port
|
||||
(buffer index size handlers codec attrs))
|
||||
|
||||
|
||||
)
|
|
@ -0,0 +1,6 @@
|
|||
#!/usr/bin/env scheme-script
|
||||
|
||||
(import
|
||||
(except (ikarus))
|
||||
(io-prims))
|
||||
|
Loading…
Reference in New Issue