lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Wed, Mar 06, 2013 at 04:00:10PM +0000, Peter Hickman wrote:
> mruby is easy to embed into C. A little rough at the edges but no harder
> than Lua.

It's a shame that it appears to be riddled with non-standard extensions
to C (specifically, computed goto).  A simple build with clang -std=c89
-pedantic fails due to C++ comments and implicit function declarations.

So, it's already harder to embed places than Lua.

B.