git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
21 lines
236 B
Mathematica
21 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
|