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/macros/mac-1.03-0.flx[1
/1
]
1: #line 197 "./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
End felix section to tut/macros/mac-1.03-0.flx[1]
Start data section to tut/macros/mac-1.03-0.expect[1
/1
]
1: Yes
End data section to tut/macros/mac-1.03-0.expect[1]