mirror of
https://github.com/Cantera/cantera.git
synced 2025-02-25 18:55:29 -06:00
18 lines
263 B
C++
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;
|
|
}
|
|
|
|
}
|