"-1#are negative| 0#are no or fraction | 1#is one |1.0<is 1+ |2#are two |2<are more than 2.");
logln("Formatter Pattern : " + fmt.toPattern());
logln("Format with -INF : " + fmt.format(Double.NEGATIVE_INFINITY));
logln("Format with -1.0 : " + fmt.format(-1.0));
logln("Format with 0 : " + fmt.format(0));
logln("Format with 0.9 : " + fmt.format(0.9));
logln("Format with 1.0 : " + fmt.format(1));
logln("Format with 1.5 : " + fmt.format(1.5));
logln("Format with 2 : " + fmt.format(2));
logln("Format with 2.1 : " + fmt.format(2.1));