10 lines
138 B
C++
10 lines
138 B
C++
#include <string.hpp>
|
|
|
|
void main( void ) {
|
|
|
|
String s ("Open Watcom C++");
|
|
|
|
cout << "The string is \"" << s << "\"" << endl;
|
|
}
|
|
|