summaryrefslogtreecommitdiff
path: root/Examples/test-suite/octave/li_cpointer_cpp_runme.m
blob: 3551a17a92da7a465887b33a6402be1553debfe4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
li_cpointer_cpp


p = new_intp();
intp_assign(p,3);

if (intp_value(p) != 3)
    error("failed");
endif

delete_intp(p);