Went to the doc directory and got this: TODO: Add Doc Could developers please stop doing that? These 'agile development' and 'release early and often' mantras have really gone overboard. Why would anybody use a programming language with zero documentation for anything? Are we supposed to guess the language and its features from a single five-line hello world program?
> Why would anybody use a programming language with zero documentation for anything? Are we supposed to guess the language and its features from a single five-line hello world program? As someone who has done a handful of compiler/interpreter projects: I don't think that they expect anyone at this point to be using that language. They're targetting it at language geeks like myself (who go and dig around the source, w…
Lemon – An embeddable, lightweight programming language in ANSI C
11–20 of 71 posts
Re: Lemon – An embeddable, lightweight programming language in ANSI C
#12Uh, thanks for posting this strange link, I guess.
Re: Lemon – An embeddable, lightweight programming language in ANSI C
#13Re: Lemon – An embeddable, lightweight programming language in ANSI C
#14Re: Lemon – An embeddable, lightweight programming language in ANSI C
#15Went to the doc directory and got this: TODO: Add Doc Could developers please stop doing that? These 'agile development' and 'release early and often' mantras have really gone overboard. Why would anybody use a programming language with zero documentation for anything? Are we supposed to guess the language and its features from a single five-line hello world program?
Why would you write documentation if your language implementation is still rapidly evolving?
Re: Lemon – An embeddable, lightweight programming language in ANSI C
#16What problem does it solve?
make DEBUG=0 STATIC=0 USE_MALLOC=0 MODULE_OS=1 MODULE_SOCKET=1
ls -lh liblemon.so
-rwxrwxr-x 1 guest guest 271K Oct 25 08:21 liblemon.so
"Lua - Smaller footprint than Python. e.g. Look at the size of python22.dll, 824kb. A basic Lua engine, including parser/compiler/interpreter, but excluding standard libraries, weighs in at under 100kb."Re: Lemon – An embeddable, lightweight programming language in ANSI C
#17What problem does it solve?
Looks like an attempt of a JS programmer to reinvent a lighter weight JS with aim at system programming. If it is yet again tied to a complex, feature rich VM (a stack based one), then he went the wrong way in achieving his goal. Direct interpretation should've been the way forward for such task.
Re: Lemon – An embeddable, lightweight programming language in ANSI C
#18Went to the doc directory and got this: TODO: Add Doc Could developers please stop doing that? These 'agile development' and 'release early and often' mantras have really gone overboard. Why would anybody use a programming language with zero documentation for anything? Are we supposed to guess the language and its features from a single five-line hello world program?
> Why would anybody use a programming language with zero documentation for anything? Are we supposed to guess the language and its features from a single five-line hello world program? As someone who has done a handful of compiler/interpreter projects: I don't think that they expect anyone at this point to be using that language. They're targetting it at language geeks like myself (who go and dig around the source, w…
Re: Lemon – An embeddable, lightweight programming language in ANSI C
#19What problem does it solve?
Looks like an attempt of a JS programmer to reinvent a lighter weight JS with aim at system programming. If it is yet again tied to a complex, feature rich VM (a stack based one), then he went the wrong way in achieving his goal. Direct interpretation should've been the way forward for such task.