How to code a multi-line text value in Dyalog APL?
I want to code something like this:
query←'
SELECT *
FROM SOME_TABLE
'
to be able to copy this text to SQL Developer and back.
I know that I could code it this way:
query←''
query,←'SELECT * '
query,←'FROM SOME_TABLE '
But it would not allow me to copy this text to SQL Developer and back easily.
Is it possible to temporary override the newline character in Dyalog APL function source code?
S←{a←⍺⍺⋄,⎕cr'a'}
query←{
SELECT *
FROM Some_Table
}S⍬