We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is an extension of Extending Empty symbol concatenated survey and Reader: Vertical Bar Concatenated With Number surveys
I was playing with handling different ways of escaping symbols. I came up with this test:
(write (map symbol->string '(|name| name|| name|\|| name|\\|xxx name|\\\\| name|\\|))) (newline)
("name" "name" "name|" "name\\xxx" "name\\\\" "name\\")
("name" "name" "" "name" "|" "name" "\\" "xxx" "name" "\\\\" "name" "\\")
("name" "name||" "name|\\||" "name|\\\\|xxx" "name|\\\\\\\\|" "name|\\\\|")
So Kawa, LIPS (next beta release), Chicken handle escapes as part of the symbol Gambit, Gauche works the same and return different symbols.
I can create a survey file, but I don't have more implementations on my system to test.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This is an extension of Extending Empty symbol concatenated survey
and Reader: Vertical Bar Concatenated With Number surveys
I was playing with handling different ways of escaping symbols. I came up with this test:
("name" "name" "name|" "name\\xxx" "name\\\\" "name\\")
("name" "name" "" "name" "|" "name" "\\" "xxx" "name" "\\\\" "name" "\\")
("name" "name" "name|" "name\\xxx" "name\\\\" "name\\")
("name" "name" "name|" "name\\xxx" "name\\\\" "name\\")
("name" "name" "" "name" "|" "name" "\\" "xxx" "name" "\\\\" "name" "\\")
("name" "name||" "name|\\||" "name|\\\\|xxx" "name|\\\\\\\\|" "name|\\\\|")
So Kawa, LIPS (next beta release), Chicken handle escapes as part of the symbol
Gambit, Gauche works the same and return different symbols.
I can create a survey file, but I don't have more implementations on my system to test.
The text was updated successfully, but these errors were encountered: