2026-05-29 03:10:10 $10000000 dup $1000000 + swap do i dup $30 + dump $100000 +loop 2026-05-29 04:27:52 I am thinking I am going to make a very small relational database in forth 2026-05-29 05:15:13 veltas: you might like this repl a bit more 2026-05-29 05:15:26 https://ohmycat.gitlab.io/oh/ 2026-05-29 05:15:33 s prints the stack, r resets it 2026-05-29 05:15:44 words will push a list of words on the stack 2026-05-29 05:27:55 i still don't know if i'm annoying you though 2026-05-29 05:28:26 it's like i will keep mentioning you for any random update for the rest of my life 2026-05-29 05:30:54 the repl is implemented in the lang itself in 100 lines of code 2026-05-29 05:31:00 https://ohmycat.gitlab.io/oh/standalone-repl.oh 2026-05-29 10:03:33 vms14: Not at all, I'm just quite busy at the moment 2026-05-29 10:04:04 Got two young kids to look after, full time job, etc 2026-05-29 10:04:26 But I don't mind you sharing, I did try to look at what you sent the other day and pulled it up and then started falling asleep at my computer 2026-05-29 10:04:59 Although I think our youngest is getting a bit easier now, and will go in his own room soon hopefully 2026-05-29 10:05:40 It's good what you're sharing, it's actually on-topic for one thing :P 2026-05-29 10:41:27 It seems I found a very cheap programming / graphing calculator, though I can't find what language it has, but it has button labeled PROG 2026-05-29 10:41:49 NY-36x pro (it's not clone of TI-36x pro, layout is different) 2026-05-29 15:10:43 I dont think it's programmable 2026-05-29 15:10:44 sadly 2026-05-29 15:16:29 veltas: i think having kids is the best thing a human can have, but i have no idea :D 2026-05-29 15:17:31 about being on topic, well crc told me concat langs are allowed so i guess yes. But i wonder if some people will be annoyed if i spam about a language that is not forth and it's quite different from it 2026-05-29 15:19:17 some things are similar and i can steal a lot of concepts though 2026-05-29 15:25:03 You basically have a Forth-style RPN lang, essentially ITC 2026-05-29 15:25:23 It's much more on topic than half of what's in here (not that this is a strict on-topic channel) 2026-05-29 15:25:54 Having kids is a lot of work and responsibility, but there's nothing like it 2026-05-29 15:26:36 I'm still somewhat early on but I can say that much 2026-05-29 15:28:09 MrMobius, it has PRGM button 2026-05-29 15:28:57 Also I bought HP 39gs for similar price but now it's not anywhere on Aliexpress. Got out of stock suddenly? 2026-05-29 15:29:04 yeah but not having memory access and a forth dictionary is a bit sad i guess if you like forth 2026-05-29 15:29:19 there is not even a return stack and i consider it more a joke than a serious lang xd 2026-05-29 15:30:30 but in a way it is an attempt to make a forth-like without memory access 2026-05-29 15:31:40 the main difference is that with immediate words in forth you can mess with the dictionary and create new entries and the dictionary is linear. I was not able to provide something linear where an immediate word could take over and mess with the entry it's being made 2026-05-29 15:32:14 instead immediate words can choose to return a function and that gets appended to whatever is being defined 2026-05-29 15:32:52 well i could do something linear, but it's simpler that way 2026-05-29 15:35:14 A lot of what you're saying is still very similar to how threading works in a conventional forth 2026-05-29 15:35:36 i thread js functions xd 2026-05-29 15:36:09 and you can push them on the stack since the stack can take anything 2026-05-29 15:41:17 i want to understand better concatenative programming and explore and exploit its benefits 2026-05-29 15:41:31 the only benefit that comes to mind is free curry for everyone 2026-05-29 15:41:36 : add-ten 10 + ; 2026-05-29 15:42:06 and duplicating values to reuse them is something i always wanted in langs 2026-05-29 15:42:51 when i made a lisp the last time i was missing the stack for some reason, and lisp is not really what i want 2026-05-29 15:43:37 lisp was my favourite lang until i saw forth and then my interest on lisp went to 0 2026-05-29 15:46:10 also fp and concatenative programming seem to be quite related 2026-05-29 15:48:22 Well and also https://veltas.co.uk/blog/forth-expr.htm 2026-05-29 17:20:21 lol didn't realize it was your blog 2026-05-29 19:18:24 No this IRC channel is my blog 2026-05-29 19:30:32 haha