Files
igl/examples/example_fun/example.cpp
T
jalec 432a66eaf8 example fun cpp
Former-commit-id: 3d66bab1e7
2012-01-25 10:23:43 +00:00

13 lines
185 B
C++

#include "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);
return 0;
}