10 lines
187 B
C++
10 lines
187 B
C++
|
|
#include <algorithm>
|
||
|
|
#include <string>
|
||
|
|
#include <list>
|
||
|
|
#include <map>
|
||
|
|
#include "main.h"
|
||
|
|
|
||
|
|
int cpp_test() {
|
||
|
|
std::string a = "hello ", b = "world";
|
||
|
|
return a.length() + b.length();
|
||
|
|
}
|