Your reply was extremely helpful and gave me enough information to figure out the mnemonic version of INIT as well.
CALL, COPY, INIT are all similar in how they handle their "matrix" of elements as a single parameter (text in quoted string).
Caveat emptor take 2 - string literal encoding is more complex inside this "matrix". String literal encoding that contains double quotes themselves takes it to the "next level".
He said, "How are you?"
in IEC 61131, string literals use $-based escape sequences
"He said, $"How are you?$""
This is how you must enter that string literal in the instruction.
When a quoted string is in an EXPORT TEXT file, that used quoted strings for a matrix of elements, they use CSV double quote escape sequence (first and last double quotes demark the beginning and end of the text file's string literal, but any embedded double quotes must be DOUBLED-UP, so TWO double quotes for every double quote within the quote. Got it?

So if I was CALLing with 3 input parameters (no output parameters), all string parameters, into SL0 and SL1 and SL2, passing in respectively
1. Short String 0
SS0
2. the string literal
ABC
3. and the string literal from above,
He said, "How are you?"
it would look like the following:
CALL MySub 0x1 DST511 "3 SS0 SL0 1 ""ABC"" SL1 1 ""He said, $""How are you?$"""" SL2 1" "3"
If you understand that, you get an A+ for double quoted escape sequence grammar! (realize the last quoted "3" is the empty output parameter matrix of the CALL instruction, not part of the input parameter matrix. "3" is saying there are 3 columns, but no rows of groups of 3 columns

)