erlualib icon indicating copy to clipboard operation
erlualib copied to clipboard

An Erlang linked-in driver that allows embedding Lua into the Erlang VM

Results 3 erlualib issues
Sort by recently updated
recently updated
newest added

func1(Text) -> {ok, L} = lua:new_state(), ?debugf("func1", L), % {ok, L} = lua:new_state(), ?debugf("func2", L), %

When compile in embedded, start ends with error. {"init terminating in do_boot",{'cannot load',erlualib,get_file}} erlualib.beam not exists, so I change erlualib/src/erlualib.app.src, {mod, { erlualib, []}}, to {mod, { lua, []}}, I...

``` lua_test:71: oh_test_ (next)...*failed* ::{assertEqual_failed,[{module,lua_test}, {line,155}, {expression,"lua : tolstring ( L , - 1 )"}, {expected,}, {value,}]} ``` Let me know if I can provide you with some more information.