12 lines
201 B
Plaintext
12 lines
201 B
Plaintext
! -*- f90 -*-
|
|
python module var
|
|
usercode '''
|
|
int BAR = 5;
|
|
'''
|
|
interface
|
|
usercode '''
|
|
PyDict_SetItemString(d,"BAR",PyInt_FromLong(BAR));
|
|
'''
|
|
end interface
|
|
end python module
|