2021-11-09 01:53:25 FORTH is so complicated sometimes I can make progress just staring at it and then thinking about it idly before I come back and refactor/change it 2021-11-09 01:53:56 Like I'll look at some code I'm working on in the morning, not change anything, think about it during the day and then I know what changes to make in the evening 2021-11-09 03:20:39 thats a sign of complexity? 2021-11-09 03:25:02 isnt that the opposite, easy to reason about? 2021-11-09 03:26:59 if you need to think about it for ages, not that easy 2021-11-09 03:27:14 forth is ace but I wouldn’t call stack manipulation easy to reason about 2021-11-09 03:29:09 implications r a funny business but 'during the day' to me implied while doing other things 2021-11-09 03:31:24 hopefully 2021-11-09 03:31:36 «local man stares at colorforth monitor for 8 hours» 2021-11-09 12:40:23 veltas: interesting observation. the simpler things are, the harder they are to use. 2021-11-09 13:34:55 imode is completely incapable of using a knife 2021-11-09 13:35:17 hahahahaha. 2021-11-09 13:35:50 theres a lot of ways to use a knife but it takes skill to do so well 2021-11-09 13:36:42 good afternoon 2021-11-09 13:41:21 allo crc. 2021-11-09 13:50:04 eris[m]: Yep I mean while doing other things 2021-11-09 13:50:10 But it's not 'easy' no 2021-11-09 13:50:44 If I get into a hard problem I'll end up solving it while doing something else often 2021-11-09 13:50:59 Because I sort of subconsciously have it there in back of mind 2021-11-09 13:51:16 I do come up with solutions when I lay down quite often. 2021-11-09 15:23:55 Heck, I love work from home. 2021-11-09 17:05:44 Why is the word being defined hidden until it is terminated? 2021-11-09 17:07:17 to allow referencing the old defintion 2021-11-09 17:07:33 while defining the new one 2021-11-09 17:07:55 : word some complex structure where it's awkward to add a word at the end ; 2021-11-09 17:08:01 : word word asecondword ; 2021-11-09 17:08:20 i used it a lot w/ recursive words 2021-11-09 17:08:32 i had a tail-recursion `;` 2021-11-09 17:08:38 super 2021-11-09 17:08:42 which meant it's impossible to add a word after the main loop 2021-11-09 17:08:56 so it'd be : word loop-body ;; 2021-11-09 17:09:13 : word word post-loopbody here ;