11 lines
145 B
C++
11 lines
145 B
C++
#include <string>
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
namespace Cantera {
|
|
|
|
void writelog(const string& s) {
|
|
cout << s;
|
|
}
|
|
|
|
}
|