mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
14 lines
204 B
Python
14 lines
204 B
Python
import moda
|
|
import modb
|
|
|
|
ca = moda.ClassA()
|
|
print('ca:', ca.Get4())
|
|
|
|
cb = modb.ClassB()
|
|
print('cb:', cb.Get3())
|
|
|
|
newca = cb.ReturnOther()
|
|
print('new:', newca.Get4())
|
|
|
|
print('arg:', cb.AcceptOther(newca))
|