From 007ba59ffec00ea96fa39f4ca4433a2f92d667f7 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 19 Aug 2016 23:04:50 -0400 Subject: [PATCH] Initial files --- srfi/1.sld | 8 ++++++++ srfi/test-1.scm | 10 ++++++++++ 2 files changed, 18 insertions(+) create mode 100644 srfi/1.sld create mode 100644 srfi/test-1.scm diff --git a/srfi/1.sld b/srfi/1.sld new file mode 100644 index 00000000..cc4027ba --- /dev/null +++ b/srfi/1.sld @@ -0,0 +1,8 @@ +(define-library (1) ; (srfi 1) + (import (scheme base)) + (export + iota + ) + (include "1.scm") + (begin) +) diff --git a/srfi/test-1.scm b/srfi/test-1.scm new file mode 100644 index 00000000..d36b9c65 --- /dev/null +++ b/srfi/test-1.scm @@ -0,0 +1,10 @@ +(import (scheme base) + (scheme write) + (scheme cyclone pretty-print) + (1)) + +(pretty-print `( + ,(iota 10) + ,(iota 10 5) + ,(iota 10 5 10) +))