blob: 8275ff3afe21ae4c3fb760ad4622baee4f3d9195 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
! -*- f90 -*-
python module var
usercode '''
int BAR = 5;
'''
interface
usercode '''
PyDict_SetItemString(d,"BAR",PyInt_FromLong(BAR));
'''
end interface
end python module
|