I was looking for this and didn't realize it. I'm designing a fantasy console and wanted to include a modern-syntax, small, interpreted language that has many independent implementations - a new BASIC or Pascal. Lua comes close to this but attention is really centered around the PUC-Rio and LuaJIT implementations and not on being easily reimplemented, and every "classic" option one might think of(including Lisps and…
The Monkey Programming Language
11–20 of 37 posts
Re: The Monkey Programming Language
#12Again.
Re: The Monkey Programming Language
#13Re: The Monkey Programming Language
#14I was looking for this and didn't realize it. I'm designing a fantasy console and wanted to include a modern-syntax, small, interpreted language that has many independent implementations - a new BASIC or Pascal. Lua comes close to this but attention is really centered around the PUC-Rio and LuaJIT implementations and not on being easily reimplemented, and every "classic" option one might think of(including Lisps and…
Have you seen Wren? https://github.com/wren-lang/wren
(I speak from experience.)
Re: The Monkey Programming Language
#15I was looking for this and didn't realize it. I'm designing a fantasy console and wanted to include a modern-syntax, small, interpreted language that has many independent implementations - a new BASIC or Pascal. Lua comes close to this but attention is really centered around the PUC-Rio and LuaJIT implementations and not on being easily reimplemented, and every "classic" option one might think of(including Lisps and…
I would argue for a Lisp. If you’re asking the user to use a language they’re not familiar with, it might as well be one that will expand their horizons, despite the potentially offputting syntax. It would be really cool if you added a key that switched from s-expressions to Sweet expressions[0] (and vice-versa). Forth is painful to use for anything more than a toy and no matter what language you choose it would be a…
If you want a Lisp, it's possible, just rewrite the OS layer.
Re: The Monkey Programming Language
#16This is another language whose syntax is similar to Rust's. I wonder why the author chose it, in spite of its Go heritage.
Also yet another language called 'Monkey'. There's already Monkey C used to develop for Garmin devices, and the Monkey/MonkeyX/Monkey2 family by Mark Sibly (of Amiga Blitz Basic fame).
Re: The Monkey Programming Language
#17I initially thought it was about the Monkey C language: https://developer.garmin.com/connect-iq/monkey-c/
Re: The Monkey Programming Language
#18Re: The Monkey Programming Language
#19This is another language whose syntax is similar to Rust's. I wonder why the author chose it, in spite of its Go heritage.
Also yet another language called 'Monkey'. There's already Monkey C used to develop for Garmin devices, and the Monkey/MonkeyX/Monkey2 family by Mark Sibly (of Amiga Blitz Basic fame).
Re: The Monkey Programming Language
#20I initially thought it was about the Monkey C language: https://developer.garmin.com/connect-iq/monkey-c/
As a Monkey C developer, I'd say Monkey C is a better example of how not to design a programming language.
I wished the whole time they'd just given me a somewhat locked-down C, and I'm only a C-dabbler so that's not a preference I'd have due to great familiarity or anything.
It was overall somewhat more unpleasant, but less weird, than writing code for Roku. Most of the Roku weirdness was just because they had some new very-much-halfassed XML programming system you had to use for new apps at the time, which forced you to define public interfaces for objects in XML for no good reason while doing the actual work in Brightscript, which isn't gonna win any language design awards ever but is at least usable. Plus it's obscure so figuring all that out was tons of fun.