Files
lix/tests/functional2/lang/line_endings/in.nix
T
Commentator2.0 c63ba3c485 tests/functional2/lang: migrated first tests
Change-Id: I4b5755a63d9454db20f63f751f5f33564a2ee5be
2025-06-01 20:19:37 +02:00

18 lines
221 B
Nix

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