diff options
Diffstat (limited to 'gem/ex1.lua')
-rw-r--r-- | gem/ex1.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gem/ex1.lua b/gem/ex1.lua new file mode 100644 index 0000000..327a542 --- /dev/null +++ b/gem/ex1.lua | |||
@@ -0,0 +1,4 @@ | |||
1 | local CRLF = "\013\010" | ||
2 | local input = source.chain(source.file(io.stdin), normalize(CRLF)) | ||
3 | local output = sink.file(io.stdout) | ||
4 | pump.all(input, output) | ||