Thank you.
On Mon, Dec 30, 2013 at 1:15 AM, Henry Rich wrote:
> printf operates on atoms of the right operand, unboxing them if they are
> boxed.
>
>
> a=: 1 2 34 4
>'%j%s\n' printf a;''
> 1 2 34 4
>
>'%j' printf 1 2 34 4
>'%s' printf <''
>
> Henry Rich
>
>
> On 12/29/2013 5:21
printf operates on atoms of the right operand, unboxing them if they are
boxed.
a=: 1 2 34 4
'%j%s\n' printf a;''
1 2 34 4
'%j' printf
Hello,
I've tried the following lines of code using printf:
a=: 1 2 34 4
'%j%s\n' printf a;''
1 2 34 4
'%j' printf a
|length erro
Hello,
I've tried the following lines of code using printf:
a=: 1 2 34 4
'%j%s\n' printf a;''
1 2 34 4
'%j' printf a
|length error: exeformat
| '%j'printf a
'%s' printf 'asdf'
|length error: exeformat
| '%s'printf'asdf'
'%s%s' printf 'asdf';''
asdf
Am I us