There’s no doubt you will need to show text on a screen eventually. Esenthel provides the class Str to remember characters, words and even entire paragraphs.
There are several ways to put text into a Str:
Str text(”hello world”); // use the constructor
text = ”hello ”; // use assignment
text += ”world” ; // use the addition assignment operator