Inconsistent parsing of symbols with one-character name

Issue #5 resolved
Yuriy Syrovetskiy created an issue
λ> parseEither "x/y"
    Right (NoTag (Symbol "" "x"))

λ> parseEither "x/yy"
    Right (NoTag (Symbol "x" "yy"))

Comments (1)

  1. dp wiz repo owner

    Fixed in #6

    > parseTest EDN.parse "x/y"
    NoTag (Symbol "x" "y")
    
    > parseTest EDN.parse "x/yy"
    NoTag (Symbol "x" "yy")
    
  2. Log in to comment