2021-09-21 15:28:06 hi, is there a way to output a number *without* a trailing space? using gforth if it matters 2021-09-21 15:30:27 you mean with `.`, right? 2021-09-21 15:30:36 . adds a trailing space 2021-09-21 15:30:42 yop 2021-09-21 15:30:47 *yup 2021-09-21 15:33:05 now, wait for someone more knowledgeable, but would `cr .` do? 2021-09-21 15:33:34 in the end if you 2021-09-21 15:33:36 see . 2021-09-21 15:33:52 and then `see d.` you can, well, see there is a `space` in there 2021-09-21 15:33:53 no, I don't want a carriage return 2021-09-21 15:34:08 well 2021-09-21 15:35:09 `s>d 0 d.r` does seem to work 2021-09-21 15:35:43 yeah 2021-09-21 15:35:52 you can make a new word 2021-09-21 15:36:02 tho I suspect there is something already baked un in gforth 2021-09-21 15:37:39 it doesn't really matter, if it works it works 2021-09-21 15:37:53 could define a word for it but I only need it once so I don't care 2021-09-21 15:41:45 what you are using forth for, katp32 2021-09-21 15:43:43 reimplementing "wump" from bsd-games in forth as a practice project 2021-09-21 15:44:26 as closely as possible, bugs and all 2021-09-21 15:52:05 cant you render the number to a string? 2021-09-21 15:52:21 >NUM or something then copy it out of the buffer onto the screen yourself 2021-09-21 15:53:19 probably, I don't know