(parse x {\n}) vs (parse x "\n")
Posted: Fri Mar 16, 2012 6:19 am
The title says it all.
I have a file called "foo"
What am I missing in this behavior?
I have a file called "foo"
Code: Select all
foo
bar
baz
bif
doodle
Code: Select all
> (length (parse (read-file "foo") "\n"))
6
> (length (parse (read-file "foo") {\n}))
1