14 lines
156 B
OpenEdge ABL
14 lines
156 B
OpenEdge ABL
%module xxx
|
|
|
|
%pythoncode %{
|
|
def one():
|
|
print "in one"
|
|
%}
|
|
|
|
%pythoncode %{
|
|
print "still in one"
|
|
|
|
def two():
|
|
print "in two"
|
|
%}
|