diff options
Diffstat (limited to '')
-rw-r--r-- | gem/ex7.lua | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/gem/ex7.lua b/gem/ex7.lua deleted file mode 100644 index c766988..0000000 --- a/gem/ex7.lua +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | function sink.table(t) | ||
2 | t = t or {} | ||
3 | local f = function(chunk, err) | ||
4 | if chunk then table.insert(t, chunk) end | ||
5 | return 1 | ||
6 | end | ||
7 | return f, t | ||
8 | end | ||
9 | |||
10 | local function null() | ||
11 | return 1 | ||
12 | end | ||
13 | |||
14 | function sink.null() | ||
15 | return null | ||
16 | end | ||