IciaCarroBarallobre / ElixirTerminalWordle

A wordle game where all the words are related to Elixir. It's played in IEX shell.
Apache License 2.0
4 stars 2 forks source link

Unicode conversion with tilde or something like that raise an error #4

Open IciaCarroBarallobre opened 2 years ago

IciaCarroBarallobre commented 2 years ago

String.to_charlist/1

Converts a string into a charlist.

Specifically, this function takes a UTF-8 encoded binary and returns a list of its integer code points. It is similar to codepoints/1 except that the latter returns a list of code points as strings.

In case you need to work with bytes, take a look at the :binary module.