Re: [Jprogramming] using j801\addons\format\printf\printf.ijs

2013-12-29 Thread Ni Bo
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

Re: [Jprogramming] using j801\addons\format\printf\printf.ijs

2013-12-29 Thread Henry Rich
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

[Jprogramming] using j801\addons\format\printf\printf.ijs

2013-12-29 Thread Ni Bo
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