Skip to content
Snippets Groups Projects
Commit 5dd41827 authored by sof's avatar sof
Browse files

[project @ 1998-03-11 16:54:13 by sof]

jtos: leave Integer-land ASAP
parent 802feb46
No related branches found
No related tags found
No related merge requests found
......@@ -848,7 +848,7 @@ jtos' n cs
= if n < 10 then
chr (fromInteger (n + ord_0)) : cs
else
jtos' (n `quot` 10) (chr (fromInteger (n `rem` 10 + ord_0)) : cs)
jtos' (n `quot` 10) (chr (toInt (n `rem` 10) + (ord_0::Int)) : cs)
showFloat x = showString (formatRealFloat FFGeneric Nothing x)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment