Here document: Difference between revisions

Content added Content deleted
No edit summary
Line 208: Line 208:
=={{header|BaCon}}==
=={{header|BaCon}}==
<lang freebasic>
<lang freebasic>
'--- we dont have a here doc built-in comand in BaCon
'--- we dont have a print here doc built-in command in BaCon
'--- so I made a PRINTLINE macro that simulates the idea
'--- so I made a PRINTLINE macro that simulates the idea
DEF FN PRINTLINE(...) = fprintf(stdout, "%s\n", #__VA_ARGS__)
DEF FN PRINTLINE(...) = fprintf(stdout, "%s\n", #__VA_ARGS__)