,---------------. | Contributions | `---------------´ ,------------------------------------------ | 2019-08-03 12:56:27 mcondron wrote: | requestClarification - Environment dependence of test cases | see: https://forth-standard.org/standard/core/toIN#contribution-102 `------------------------------------------ The last two tests seem to depend on a 32-bit cell width. ,---------. | Replies | `---------´ ,------------------------------------------ | 2019-08-02 06:19:29 AntonErtl replies: | proposal - Right-justified text output | see: https://forth-standard.org/proposals/right-justified-text-output#reply-271 `------------------------------------------ ``` : rtype ( c-addr u u2 -- ) \ print string represented by c-addr u right-justified in a u2-wide field over - 0 max spaces type ; ``` This prints the full string if it is too wide; adjust as necessary if you want to truncate it in some way. ,------------------------------------------ | 2019-08-02 11:41:11 mcondron replies: | proposal - Right-justified text output | see: https://forth-standard.org/proposals/right-justified-text-output#reply-272 `------------------------------------------ Thanks for the example! I am proposing that something like that be added to the standard. Since there are right-justified output words for numbers, why not also have it for text?