// Symbols begin with a non-numeric character and can contain
// alphanumeric characters and `. * + ! - _ ? $ % & = < >`. If `-`,
// `+` or `.` are the first character, the second character (if any)
// must be non-numeric. Additionally, `: #` are allowed as constituent
// characters in symbols other than as the first character.
It appears that edn-java parses symbols with embedded "#" incorrectly. Given the text [a#b {}] we expect a vector of these two items:
It appears that edn-java parses symbols with embedded "#" incorrectly. Given the text
[a#b {}]
we expect a vector of these two items:a#b
Instead we get these two items:
a
#b