From: <f.z...@me...> - 2019-02-16 16:55:56
|
Hello forth-professionals and fellow forth enthousiasts. I created a word that converts a positive double-precision number to an 8 character string like this: : dpNumberToString ( d -- address count ) <# # # # # # # # # #> ; This works fine for positive numbers. However I want to convert negative double-precision numbers too. Any idea how I can make that work? Groeten uit Nederland! Fred |