Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/octave/template_ns_runme.m
2019-08-04 21:38:19 -05: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