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.
Please correct me if i am wrong but doesn't this
identifier ::= letter | '' { identifier-char }
identifier-char ::= '' | letter | digit
mean that an identifier can only have one letter if it starts with a letter not an underscore, in the tests the function names (which are id identifiers) have names like 'avg' which would seem to violate this.
I may have the wrong end of the stick here so please correct me if i'm wrong.