11 lines
195 B
C++
11 lines
195 B
C++
|
#include <string.hpp>
|
||
|
|
||
|
void main( void ) {
|
||
|
|
||
|
String s ("Open Watcom C++ compiler");
|
||
|
|
||
|
cout << "String \"" << s << "\" in lower-case: "
|
||
|
<< "\"" << s.lower() << "\"" << endl;
|
||
|
}
|
||
|
|