example fun cpp

This commit is contained in:
jalec
2012-01-25 10:23:43 +00:00
parent 1ab2a2fbd6
commit 3d66bab1e7
+12
View File
@@ -0,0 +1,12 @@
#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;
}