add dev for stringdemo output
This commit is contained in:
@ -12,8 +12,8 @@ void StringDemo::run() {
|
|||||||
|
|
||||||
log.info() << "Reassign string" << endl;
|
log.info() << "Reassign string" << endl;
|
||||||
str1 = "Hello";
|
str1 = "Hello";
|
||||||
kout << str1 << " has length " << str1.size() << endl;
|
kout << str1 << " has length " << dec << str1.size() << endl;
|
||||||
kout << "Again with strlen: Hello has length " << bse::strlen("Hello") << endl;
|
kout << "Again with strlen: Hello has length " << dec << bse::strlen("Hello") << endl;
|
||||||
|
|
||||||
kout << "Adding strings: " << str1 << " + World" << endl;
|
kout << "Adding strings: " << str1 << " + World" << endl;
|
||||||
log.info() << "Adding strings" << endl;
|
log.info() << "Adding strings" << endl;
|
||||||
|
Reference in New Issue
Block a user