2026-05-09 07:47:19 Stalevar: All caps are just the standard way, most forths are case insensitive so lowercase would work 2026-05-09 07:49:42 <# # #> are sort of number formatting words, <# just inits formatting, # writes one digit (backwards, it starts with least significant digits first because it has to use mod to get the digits) 2026-05-09 07:50:54 And #S writes one or more digits until the remaining divided value is zero 2026-05-09 07:51:33 #> drops the number and pushes the string containing format on stack 2026-05-09 07:52:27 The # words expect a double number so I used 0 first to push a zerod high part 2026-05-09 07:53:37 So <# # # # # # # # #S #> would give 8+ digits 2026-05-09 07:57:53 HOLD pushes an arbitrary char to the formatted string