Erlang List Conversion to Elixr [$/],[$?]

Hi,
I found some kinda syntax in erlang split_path([$/]) how to convert this into elixir' I struck at wht $/ meant for?

$/ in Erlang is the Unicode Codepoint for the character /. In Elixir the equivalent is ?/. You could also write it as split_path('/').

4 Likes