Here document: Difference between revisions

add BQN
(Here document en Yabasic)
(add BQN)
Line 232:
 
The awk extraction and reporting language does not provide any markup facility for embedding here documents within an awk script. The awk utility is really a helper tool often used from within the Unix shell. The Unix shell in which awk scripts are usually embedded does support the use of here documents, and the way that here documents are used within the shell make them ideal for passing to awk as is, without the need for an additional facility in awk.
 
=={{header|BQN}}==
Works in: [[CBQN]]
 
The default string syntax in BQN allows multiline strings. Strings start and end with a double quote, and quotes within the text can be escaped by typing two quotes.
 
<lang bqn>•Out "dsdfsdfsad
""fsadf""sdf"</lang><lang>dsdfsdfsad
"fsadf"sdf</lang>
 
=={{header|Bracmat}}==
236

edits