AshlinHarris / Spinners.jl

Command line spinners in Julia with Unicode support
MIT License
13 stars 1 forks source link

Handle escape sequences #12

Closed AshlinHarris closed 1 year ago

AshlinHarris commented 1 year ago

For example, the pinwheel "\\|/-". Using a function backend might help with this, as strings will only need to be parsed once.

AshlinHarris commented 1 year ago

This string is the same as join(Char.([92, 124, 47, 45])).

AshlinHarris commented 1 year ago

repr()

AshlinHarris commented 1 year ago

Resolved by rewrites for v0.4