evhub / coconut

Simple, elegant, Pythonic functional programming.
http://coconut-lang.org
Apache License 2.0
4.04k stars 120 forks source link

unicode alternative of multiple-argument pipe backward `↤*` does not work #822

Closed JayXon closed 7 months ago

JayXon commented 7 months ago

docs says ↤* is an alternative to <*|

ascii works

print <*| [1,2]

unicode alternative gives parser error

print ↤* [1,2]
CoconutParseError: parsing failed (line 1)
  print ↤* [1,2]
  \~~~~~~^

pipe forward works fine

evhub commented 7 months ago

Fixed as of coconut-develop>=3.0.4-post_dev17 (pip install -U coconut-develop>=3.0.4-post_dev17 to get the fix).