rizin/r2-bindings/python/test-r_num.py
pancake 79e3fba4f9 * More work for the bindings
* Make python test programs use system's lib
2011-11-04 03:48:28 +01:00

9 lines
171 B
Python

try:
from r_util import *
except:
from r2.r_asm import RNum
a = RNum (None, None);
print "The value is: %d"%(a.get("33"))
print "The math is: %d"%(a.math("33+(4*2)"))