Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/contract/simple_c/runme2.py
2019-08-04 21:38:19 -05:00

21 lines
312 B
Python

import example
# Call the Circle() function correctly
x = 1;
y = 1;
r = 3;
c = example.Circle(x, y, r)
print "The return value of Circle(%d, %d, %d) is %d" % (x,y,r,c)
# test pre-assertion
x = 1;
y = -1;
r = 3;
c = example.Circle(x, y, r)
print "The return value of Circle(%d, %d, %d) is %d" % (x,y,r,c)