-- No Grouping (df_slide16) -- leading zero if needed -- 2 decimal places, even if not needed -- 1 leading zero, if needed f = .decimalFormat~new('0.00') say f~format(1234.56) say f~format(1234.5) say f~format(3/6) say f~format(-1234.56) say f~format(-1234.5) say f~format(0 - (3/6)) ::requires 'c:\2008Symposium\presentations\decimalFormat.cls'