Files
cpp-thirdparty/winx64/bin/swig-3.0.12/Examples/test-suite/octave/template_ns_runme.m
Bassem Girgis 81b4b9e273 Initial commit
2018-12-20 17:34:07 -06:00

22 lines
236 B
Mathematica

template_ns
p1 = pairii(2,3);
p2 = pairii(p1);
if (p2.first != 2)
error
endif
if (p2.second != 3)
error
endif
p3 = pairdd(3.5,2.5);
p4 = pairdd(p3);
if (p4.first != 3.5)
error
endif
if (p4.second != 2.5)
error
endif