You've already forked ada-py-bind
mirror of
https://github.com/AdaCore/ada-py-bind.git
synced 2026-02-12 13:05:06 -08:00
16 lines
190 B
Python
16 lines
190 B
Python
import gen
|
|
|
|
p = gen.Point()
|
|
|
|
print p.coords[1]
|
|
print p.coords[2]
|
|
print p.coords[3]
|
|
|
|
p.coords[1] = 12
|
|
p.coords[2] = 13
|
|
p.coords[3] = 14
|
|
|
|
print p.coords[1]
|
|
print p.coords[2]
|
|
print p.coords[3]
|