git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4141 626c5289-ae23-0410-ae9c-e8d60b6d4f22
16 lines
137 B
OpenEdge ABL
16 lines
137 B
OpenEdge ABL
%module xxx
|
|
|
|
#define foo(a,x) a x
|
|
#define bar(x) x
|
|
#define spam() /**/
|
|
|
|
foo(3)
|
|
foo(3,4,5)
|
|
bar()
|
|
bar(2,3)
|
|
spam(1)
|
|
|
|
|
|
|
|
|
|
|