1. Re: Eu vs perl, strings
- Posted by Brian Broker <bkb at CNW.COM> Dec 07, 1999
- 457 views
On Tue, 7 Dec 1999 16:54:28 -0600, Kat <KSMiTH at PELL.NET> wrote: > <snip> Also,, printing things in Eu isn't all that easy, i >have lines like this fairly often: > >puts(1,datastr1[3] & " " & sprintf("%d", charvalues[datastr1[3] - 64] ) & >"\n") Why not just use printf? printf( 1, datastr1[3] & " %d\n", charvalues[datastr1[3] - 64] ) -- Brian (Printing things in Eu isn't all that difficult...)