RosettaCodeData/Task/Formatted-numeric-output/Scheme/formatted-numeric-output.ss

8 lines
149 B
Scheme
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
(load "srfi-54.scm")
(load "srfi-54.scm") ;; Don't ask.
(define x 295643087.65432)
(dotimes (i 4)
(print (cat x 25 3.0 #\0 (list #\, (- 4 i)))))