Files
cantera/Cantera/user/user.cpp

18 lines
263 B
C++

/*
* This is an example of a user-defined function that can be linked into Cantera.
*/
#include <iostream>
#include "ct_defs.h"
using namespace Cantera;
namespace User {
using namespace std;
void hello() {
cout << "Hello!" << endl;
}
}