24 lines
358 B
Mathematica
24 lines
358 B
Mathematica
compactdefaultargs
|
|
|
|
defaults1 = Defaults1(1000);
|
|
defaults1 = Defaults1();
|
|
|
|
if (defaults1.ret(10.0) != 10.0)
|
|
error("failed");
|
|
endif
|
|
|
|
if (defaults1.ret() != -1.0)
|
|
error("failed");
|
|
endif
|
|
|
|
defaults2 = Defaults2(1000);
|
|
defaults2 = Defaults2();
|
|
|
|
if (defaults2.ret(10.0) != 10.0)
|
|
error("failed");
|
|
endif
|
|
|
|
if (defaults2.ret() != -1.0)
|
|
error("failed");
|
|
endif
|
|
|