mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-07 22:44:25 +08:00
14 lines
196 B
Python
Executable File
14 lines
196 B
Python
Executable File
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)
|