[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua with a different syntax
- From: Rob Kendrick <lua-l@...>
- Date: Wed, 5 Nov 2008 12:50:15 +0000
On Wed, 5 Nov 2008 13:46:14 +0100
Marco Bambini <marco@sqlabs.net> wrote:
> I would like to
> try to reuse the efficient virtual machine built-into lua but using
> a very different syntax (and not the lua language).
> What are all the difficulties and implications of such a project?
> and what should be the best way to proceed?
Unfortunately, Lua's VM is an implementation detail. It's there to
implement Lua, and is not designed to be a generic VM for any language.
You may have trouble expressing this other language's semantics using
it.
B.