lix/tests/lang/parse-okay-crlf.nix

18 lines
221 B
Nix
Raw Normal View History

2006-08-16 10:23:02 +00:00
rec {
/* Dit is
een test. */
x =
# Dit is een test. y;
y = 123;
# CR or CR/LF in strings should be translated to LF (but not
# explicit \r's).
foo = "multi line
string
test\r";
z = 456; }