cantera/Cantera/user/user.cpp
2003-11-01 10:11:14 +00:00

16 lines
238 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 {
void hello() {
cout << "Hello!" << endl;
}
}