summary refs log tree commit diff
path: root/lib/slice.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/slice.fnl')
-rw-r--r--lib/slice.fnl5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/slice.fnl b/lib/slice.fnl
deleted file mode 100644
index 4f0de0f..0000000
--- a/lib/slice.fnl
+++ /dev/null
@@ -1,5 +0,0 @@
-(fn slice [t start stop]
-  (fcollect [i start (or stop (length t))]
-    (. t i)))
-
-{: slice}