1.3. Long Lines

Preprocessor directives support a kind of 'here' doc. Place a # character after the first part of the command, and all lines up to a line consisting solely of a # will be taken as the argument string.
Start felix section to tut/examples/mac106.flx[1 /1 ]
     1: #line 157 "./lpsrc/flx_tut_macro.pak"
     2: #import <flx.flxh>
     3: #define ONE 1
     4: #define TWO 1
     5: #define THREE 1
     6: #if #
     7: ONE + TWO + THREE > 0
     8: #
     9: print "Yes"; endl;
    10: #else
    11: print "No"; endl;
    12: #endif
    13: 
End felix section to tut/examples/mac106.flx[1]