1.3. Binding Shortcuts

For your convenience, the ctypes declaration allows multiple type bindings to be defined at once. Each Felix name must also be a c identifier representing a type in C.
Start C++ section to tut/examples/tut_bind131a.flx[1 /1 ]
     1: header "#include <cstdio>";
     2: ctypes int, long;
     3: proc print:int = 'printf("%d\\n",$1);';
     4: print 1;
     5: print 2;
     6: 
End C++ section to tut/examples/tut_bind131a.flx[1]