Copyright (c) 2000 California Institute of Technology
All rights reserved. See the file COPYRIGHT for a full description.
$Id: Prec.m3.html,v 1.3 2010-04-29 17:18:53 wagner Exp $
MODULE Prec;
IMPORT Fmt;
PROCEDURE Format(a: T): TEXT =
CONST
k = ARRAY Kind OF TEXT{"Left","Right","None"};
BEGIN
RETURN k[a.kind] & Fmt.Int(a.val);
END Format;
BEGIN
END Prec.