Re: text.e bugs?
- Posted by cargoan Jan 12, 2015
- 2225 views
This:
include std/console.e include std/text.e display("Fmt A: [(,,:14.2] Fmt B: [,,:14.2] Raw: []", { 267.4, 267.4, 267.4}) display("Fmt A: [+(,,:14.2] Fmt B: [+,,:14.2] Raw: []\n", {-267.4, -267.4, -267.4}) /* output Fmt A: 267.40 Fmt B: 267.40 Raw: 267.4 Fmt A: (267.4) Fmt B: -267.40 Raw: -267.4 */ -- eucode