2022-11-04 00:26:52 wylie39: Some systems have variants of . that will do that. 2022-11-04 00:27:01 Say, (.) 2022-11-04 00:27:08 But that's not standard, I don't believe. 2022-11-04 00:27:23 : (.) prints with no trailing space ; 2022-11-04 00:27:28 : . (.) space ; 2022-11-04 00:28:34 They'd likely use the stuff dave0 cited. 2022-11-04 08:08:34 Such a soothing experience, text-to-speech of gforth manual ^^' 2022-11-04 09:22:36 does anyone know when Forth day is? 2022-11-04 09:22:39 Nov 17Th 2022-11-04 09:22:40 ? 2022-11-04 10:05:24 Why? 2022-11-04 13:17:23 joe9: November 19th per http://forth.org/svfig/prenext.html 2022-11-04 13:19:11 I would have gone with May 4th for various reasons 2022-11-04 13:19:38 why cforth uses switch and case? 2022-11-04 13:19:42 https://github.com/MitchBradley/cforth 2022-11-04 13:20:12 are there any other ways to implement forth in c? 2022-11-04 13:21:09 lots 2022-11-04 13:23:14 what's wrong with switch and case? 2022-11-04 13:24:44 i am thinking about extending forth primitives without editing the big switch 2022-11-04 13:25:04 eris[m]: where can i learn some? 2022-11-04 13:28:43 you generally dont want a big switch for primitives 2022-11-04 13:28:54 just dictionary stuff 2022-11-04 13:29:08 if you want to implement a VM, use a table with computed goto 2022-11-04 13:31:50 i should study cforth better first 2022-11-04 15:33:01 `see cells` doesn't work in gforth? 2022-11-04 15:33:54 what is see cells 2022-11-04 15:34:14 she cells sea cells by the C shore 2022-11-04 15:42:47 :| 2022-11-04 15:44:00 And why is mod infix? 2022-11-04 15:44:26 SEE might not do much if it's a blob of ASM for performance reasons 2022-11-04 15:44:48 thrig: yeah, but it hang my forth 2022-11-04 15:44:49 weird 2022-11-04 18:07:20 hmm, you may be able to get away with a switch statement since your C compiler may turn it into a computed goto for you 2022-11-04 18:08:41 worth looking at the assembly output or tinkering on godbolt 2022-11-04 18:18:31 explicit tail-gotos get 30% speedup even with that optimisation 2022-11-04 18:31:58 ya could be depending on the architecture and compiler 2022-11-04 18:38:11 colorforth uses a variant of shannon-fano encoding. Just curious of how the characters would look like using huffman encoding.. 2022-11-04 18:38:31 I cannot seem tofind anything on the web for such. 2022-11-04 18:49:23 MrMobius: was that for me? no. 2022-11-04 18:51:05 You know of Collapse OS? 2022-11-04 19:43:22 Hmmm, three different object system in gforth :P 2022-11-04 19:44:14 TIMTOWTDI 2022-11-04 19:48:02 ? 2022-11-04 19:50:55 There's more than one way to do it (TMTOWTDI or TIMTOWTDI, pronounced Tim Toady) is a Perl programming motto. 2022-11-04 19:50:58 ah 2022-11-04 19:58:56 Web page with many example snippets of Forth available? 2022-11-04 19:59:05 https://learnxinyminutes.com/docs/forth/ 2022-11-04 20:01:46 http://www.forth.org/tutorials.html 2022-11-04 20:11:33 rosetta code probably has forth examples 2022-11-04 20:22:41 Yep! 2022-11-04 20:22:53 Also found a book written 2005!!! Must be the latest one xD 2022-11-04 20:23:00 https://www.mpeforth.com/arena/ProgramForth.pdf 2022-11-04 20:23:38 ACTION zzz 2022-11-04 22:32:38 https://groups.google.com/g/comp.lang.forth/c/w7K2CFqSCe8/m/nv_h2XtD9iEJ 2022-11-04 22:32:45 https://groups.google.com/g/comp.lang.forth/c/J1gvnQ7YYro/m/9DWwdlLdcSAJ 2022-11-04 22:32:49 good ones.