40 lines
369 B
Mathematica
40 lines
369 B
Mathematica
|
|
namespace_class
|
||
|
|
|
||
|
|
try
|
||
|
|
p = Private1();
|
||
|
|
ok = 1;
|
||
|
|
catch
|
||
|
|
ok = 0;
|
||
|
|
end_try_catch
|
||
|
|
|
||
|
|
if (ok)
|
||
|
|
error("Private1 is private")
|
||
|
|
endif
|
||
|
|
|
||
|
|
try
|
||
|
|
p = Private2();
|
||
|
|
ok = 1;
|
||
|
|
catch
|
||
|
|
ok = 0;
|
||
|
|
end_try_catch
|
||
|
|
|
||
|
|
if (ok)
|
||
|
|
error("Private2 is private")
|
||
|
|
endif
|
||
|
|
|
||
|
|
EulerT3D.toFrame(1,1,1);
|
||
|
|
|
||
|
|
b = BooT_i();
|
||
|
|
b = BooT_H();
|
||
|
|
|
||
|
|
|
||
|
|
f = FooT_i();
|
||
|
|
f.quack(1);
|
||
|
|
|
||
|
|
f = FooT_d();
|
||
|
|
f.moo(1);
|
||
|
|
|
||
|
|
f = FooT_H();
|
||
|
|
f.foo(Hi);
|
||
|
|
|