17 lines
270 B
C++
17 lines
270 B
C++
#include <igl/example_fun.h>
|
|
using namespace igl;
|
|
using namespace std;
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
double d = 4.4;
|
|
example_fun(d);
|
|
int i = 4;
|
|
example_fun(i);
|
|
#ifndef IGL_STATIC_LIBRARY
|
|
const char * s = "string";
|
|
example_fun(s);
|
|
#endif
|
|
return 0;
|
|
}
|