2024-05-20 13:50:35 guys tell me dirty things about your forth 2024-05-20 13:50:54 like what is the feature you added that you like the most, etc 2024-05-20 13:51:36 mine is not a forth, but i like a word named 'buffer' that expects code and redirects stdout to have everything printed on a string, then pushes that string on the stack 2024-05-20 13:52:10 : hello.world ." Hello, world" cr ; 2024-05-20 13:52:18 'hello.word buffer 2024-05-20 13:52:37 it will return a string with hello world\n 2024-05-20 13:53:09 it's mainly for generating code, or html or similar stuff 2024-05-20 13:53:26 this way the words just need to print stuff, and some wrapper will capture that output 2024-05-20 14:00:08 zelgomer: For me # means 'current number of things", and not size 2024-05-20 14:00:27 e.g. #TIB is number of chars currently in TIB 2024-05-20 14:00:50 I just don't have a symbol to mean 'size' or 'capacity', I'll choose names that fit 2024-05-20 14:01:00 Often 'MAX' appears in that name like MAX-TIB 2024-05-20 14:01:35 Depends on context 2024-05-20 14:03:13 i use 'len' for that 2024-05-20 14:20:20 For the size of some entity, in whatever units made sense for it, I'd be apt to use len as well. I guess that's my Python exposure influencing me. 2024-05-20 14:53:00 cell-len?