1

add dev for stringdemo output

This commit is contained in:
2022-07-29 14:19:36 +02:00
parent b70024a973
commit d4f42ae77d

View File

@ -12,8 +12,8 @@ void StringDemo::run() {
log.info() << "Reassign string" << endl;
str1 = "Hello";
kout << str1 << " has length " << str1.size() << endl;
kout << "Again with strlen: Hello has length " << bse::strlen("Hello") << endl;
kout << str1 << " has length " << dec << str1.size() << endl;
kout << "Again with strlen: Hello has length " << dec << bse::strlen("Hello") << endl;
kout << "Adding strings: " << str1 << " + World" << endl;
log.info() << "Adding strings" << endl;