Last active
December 25, 2015 18:19
-
-
Save rrouse/7019243 to your computer and use it in GitHub Desktop.
Sort in falcon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
s = InputStream(args[0]) | |
o = OutputStream(args[1]) | |
sorted = Set().comp( s.grabLine ) | |
s.close() | |
for item in sorted: o.writeText(item + "\n") | |
o.close() | |
# falcon sort.fal lines.txt sorted.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment