Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
some print debugging goes a long way, even without knowing any erlang (as is my case)
io_lib:format/2 returns
chars()
which is described at https://www.erlang.org/doc/man/io_lib#type-chars :you're assuming that the result is a string, but
chars()
can be other structures than thatthis is why you may be getting a different outcome locally, it's
chars()
in both cases, but only in one case was it the same structure as a stringjust test, you must use another function when you press the 'attempt'