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 felix section to tut/examples/tut_bind131a.flx[1 /1 ]
     1: #line 243 "./lpsrc/flx_tut_bind.pak"
     2: header "#include <cstdio>";
     3: ctypes int, long;
     4: proc print:int = 'printf("%d\\n",$1);';
     5: print 1;
     6: print 2;
     7: 
End felix section to tut/examples/tut_bind131a.flx[1]