diff options
Diffstat (limited to 'stdio.scm')
-rw-r--r-- | stdio.scm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/stdio.scm b/stdio.scm new file mode 100644 index 0000000..bc4e914 --- /dev/null +++ b/stdio.scm @@ -0,0 +1,7 @@ + +(require 'scanf) +(require 'printf) + +(define stdin (current-input-port)) +(define stdout (current-output-port)) +(define stderr (current-error-port)) |