Hi,
It is not clear what are the supported string methods in C++. The code provided for completion simply fails with undefined methods, see below for “Loud Quietness”. Some of the methods do work tough, e.g. s.size(). Is there a definition of string class somewhere? Can please point me to it?
auto password = "abcdef";
hero.say(password.toUpperCase()); // <---- This fails with : "password.toUpperCase() is not a function"
I just copied my code using hero.say() merely for debugging. I actually need the upper case - this is the main point and it is failing with error above.
I think we should add suitable functions inline in the sample code for those levels that the player can use, rather than relying on built-ins that are different. We can also edit the documentation to be different for those languages.