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.
https://docs.ruby-lang.org/en/master/doc/syntax/literals_rdoc.html
"There is also a character literal notation to represent single character strings, which syntax is a question mark (?) followed by a single character or escape sequence that corresponds to a single codepoint in the script encoding:"
It is in the Ruby documentation. No, it's not Symbols (:Ruby) but it's quite a mess since originally this was intended as a Number literal but doing
?a
to get97
was confusing and it wasn't intuitive so now it's a String and people can just do?a.ord
for97
.Sorry if this is real nooby question, but why does ?* == * as a string
I cant find anything about ?* in the Ruby documentation
Edit: also how do I put code into the little boxes like Unihedron has?
This comment is hidden because it contains spoiler information about the solution