git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7692 626c5289-ae23-0410-ae9c-e8d60b6d4f22
9 lines
118 B
Python
9 lines
118 B
Python
from li_carrays import *
|
|
|
|
d = doubleArray(10)
|
|
|
|
d[0] = 7
|
|
d[5] = d[0] + 3
|
|
|
|
if d[5] + d[0] != 17:
|
|
raise RuntimeError
|