On Sunday 04 November 2001 10:59 pm, Zach Lipton wrote: > I'm working on learning some parrot asm, but if I write something like > this: > > set N0,2 > set N1,2 > add N3, N0, N1 > print N3 > > > I get: > > 4.000000 > > Is there any way to round this, or at least chop the 0's off the end?
since print is for debugging purposes, that's doubtful. You could create a throw-away-patch that adds does: printf s, i|n|s -Michael