Any suggestion on what the easiest, platform-independent + portable (so either #forth or a vm like #uxn) system exists that can get me writing software that works in a console/terminal within minutes? I just want to focus on the practical details of building a text-editor without fighting with compiling suites and operating systems and neither do I want to deal with "cute" arbitrary limitations (uxn, pico8 etc) that don't want to deal with real-world use cases (I have markdown files several hundred K in size I need to edit)
Like, all I've ever wanted to do is solve the design issues of shit software, but because software is so shit, I've had to keep reinventing the wheel as I peel back each layer, trying to find the point where software stops being shit and all I've discovered is that it's shit all the way down and I'm reduced to banging stones together to produce sparks as some form of yak shaving my way to a text-editor
@Kroc I am not sure it is a simple problem. You need something portable to handle text terminals or graphics, and that is ncurses et al or SDL et al. Can ncurses or SDL be programmed to using, say, Forth? Not even WASM has any real-world interfaces.
"The craft of text editing" by Craig Finseth is said to cover most of the aspects beyond incidentals like UI primitives.
There is the editor e3 written in x86 assrmbler, for an opposite take on simplicity compared to portability.