summaryrefslogtreecommitdiff
path: root/Examples/test-suite/octave/li_cpointer_cpp_runme.m
blob: 463cf44f8555f7b7b2dafae70f4daf1ca50ed0b9 (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
endif

delete_intp(p);