summaryrefslogtreecommitdiff
path: root/Examples/test-suite/matlab/grouping_runme.m
blob: 6a97ce2635b076567194aa4ce057723e1533d534 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
x = grouping.test1(42);
if (x ~= 42)
    error
end

grouping.test2(42);

x = (grouping.do_unary(37, grouping.NEGATEC));
if (x ~= -37)
    error
end

grouping.test3(42);