10 lines
128 B
Python
10 lines
128 B
Python
from li_cpointer_cpp import *
|
|
|
|
|
|
p = new_intp()
|
|
intp_assign(p, 3)
|
|
|
|
if intp_value(p) != 3:
|
|
raise RuntimeError
|
|
|
|
delete_intp(p)
|