Add a flags package.

R=gri
OCL=13399
CL=13399
This commit is contained in:
Rob Pike 2008-07-23 20:02:54 -07:00
parent 5a30b5b8a9
commit ac0dd5ae52
3 changed files with 444 additions and 3 deletions

View file

@ -16,7 +16,7 @@ package fmt
export Fmt, New;
const NByte = 64;
const NPows10 = 160; // BUG: why not nelem(pows10);
const NPows10 = 160;
var ldigits string = "0123456789abcdef"; // BUG: Should be const
var udigits string = "0123456789ABCDEF"; // BUG: Should be const