mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-06 22:39:55 +08:00
15 lines
238 B
Python
Executable File
15 lines
238 B
Python
Executable File
from __future__ import print_function
|
|
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))
|